Skip to content

Commit d5b6292

Browse files
committed
Fixed a pyflakes issue.
- Legacy-Id: 16955
1 parent feaa503 commit d5b6292

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

ietf/utils/management/commands/fix_ambiguous_timestamps.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
from django.apps import apps
1010
from django.conf import settings
11-
from django.contrib.contenttypes.models import ContentType
1211
from django.core.management.base import BaseCommand
1312
from django.db import models
1413

@@ -62,4 +61,4 @@ def handle(self, *app_labels, **options):
6261
for field in model._meta.fields:
6362
if isinstance(field, models.DateTimeField):
6463
self.fixup(model, field.name, start, stop)
65-
64+

0 commit comments

Comments
 (0)