From d5b62920607e625918763987bdb29cd777f044d6 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 4 Nov 2019 18:11:59 +0000 Subject: [PATCH] Fixed a pyflakes issue. - Legacy-Id: 16955 --- ietf/utils/management/commands/fix_ambiguous_timestamps.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ietf/utils/management/commands/fix_ambiguous_timestamps.py b/ietf/utils/management/commands/fix_ambiguous_timestamps.py index 174a8a321..9a20d1cc5 100644 --- a/ietf/utils/management/commands/fix_ambiguous_timestamps.py +++ b/ietf/utils/management/commands/fix_ambiguous_timestamps.py @@ -8,7 +8,6 @@ import sys from django.apps import apps from django.conf import settings -from django.contrib.contenttypes.models import ContentType from django.core.management.base import BaseCommand from django.db import models @@ -62,4 +61,4 @@ class Command(BaseCommand): for field in model._meta.fields: if isinstance(field, models.DateTimeField): self.fixup(model, field.name, start, stop) - \ No newline at end of file +