aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlban Gruin2017-10-18 13:37:36 +0200
committerAlban Gruin2017-10-22 13:16:02 +0200
commit00bd85d3d19ad829566835d20cb04fecf324a6c1 (patch)
tree4218d299e0f27d8448f597332cc030841da1bd67
parent3830f9c786f1a790d67958b0a6d38bea75679159 (diff)
Suppression des imports inutiles
-rw-r--r--management/commands/timetables.py1
-rw-r--r--tests.py2
2 files changed, 0 insertions, 3 deletions
diff --git a/management/commands/timetables.py b/management/commands/timetables.py
index 35fb26e..2d8a17e 100644
--- a/management/commands/timetables.py
+++ b/management/commands/timetables.py
@@ -18,7 +18,6 @@ import datetime
from django.core.management.base import BaseCommand
from django.db import transaction
from django.db.models import Min
-from django.utils import timezone
from edt.models import Course, Timetable
from edt.utils import get_week, tz_now
diff --git a/tests.py b/tests.py
index be7b884..a3475ff 100644
--- a/tests.py
+++ b/tests.py
@@ -14,8 +14,6 @@
# along with celcatsanitizer. If not, see <http://www.gnu.org/licenses/>.
from django.test import TestCase
-from django.utils import timezone
-
from .models import Course, Group, Timetable, Year
from .utils import tz_now