Fix F401: imported but unused.

This commit is contained in:
Lucas Wiman 2018-07-02 12:16:41 -07:00
parent 679aed41a2
commit 600ddc8dc5
2 changed files with 2 additions and 4 deletions

View file

@ -1,4 +1,4 @@
from .choices import Choices
from .tracker import FieldTracker, ModelTracker
from .choices import Choices # noqa:F401
from .tracker import FieldTracker, ModelTracker # noqa:F401
__version__ = '3.1.2'

View file

@ -1,7 +1,5 @@
from __future__ import unicode_literals
from unittest import skipUnless
import django
from django.core.exceptions import FieldError
from django.test import TestCase