From 70e74fd619793b6ddab18c271b08c0f7e6eeef2d Mon Sep 17 00:00:00 2001 From: DELL Date: Mon, 17 Oct 2022 23:08:37 +0700 Subject: [PATCH] delete unnecessary import --- judge/views/blog.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/judge/views/blog.py b/judge/views/blog.py index 70f4be5..42cecb7 100644 --- a/judge/views/blog.py +++ b/judge/views/blog.py @@ -1,5 +1,3 @@ -from xmlrpc.client import boolean -from django.conf import settings from django.db.models import Count, Max, Q from django.http import Http404 from django.urls import reverse @@ -8,8 +6,6 @@ from django.utils.functional import lazy from django.utils.translation import ugettext as _ from django.views.generic import ListView -from itertools import chain - from judge.comments import CommentedDetailView from judge.models import ( BlogPost, @@ -27,7 +23,6 @@ from judge.utils.diggpaginator import DiggPaginator from judge.utils.problems import user_completed_ids from judge.utils.tickets import filter_visible_tickets from judge.utils.views import TitleMixin -from judge.views import organization # General view for all content list on home feed