summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-06 13:22:53 -0600
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-06 13:22:53 -0600
commitffc0e0ca3760759688b497ed9f580c3ebd807f80 (patch)
tree8d8c70e7f3eb909466d7329142a77036c693a8a2
parentbbc73e6a12227f5ed52fd38bc37f56f434a0a72c (diff)
Corrected a flake8 issue -- this line is imported for the purpose of re-exposing the name
-rw-r--r--django/db/models/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/__init__.py b/django/db/models/__init__.py
index 27db994b61..12c31f89fd 100644
--- a/django/db/models/__init__.py
+++ b/django/db/models/__init__.py
@@ -15,7 +15,7 @@ from django.db.models.fields.files import FileField, ImageField # NOQA
from django.db.models.fields.related import ( # NOQA
ForeignKey, ForeignObject, OneToOneField, ManyToManyField,
ManyToOneRel, ManyToManyRel, OneToOneRel)
-from django.db.models.fields.proxy import OrderWrt
+from django.db.models.fields.proxy import OrderWrt # NOQA
from django.db.models.deletion import ( # NOQA
CASCADE, PROTECT, SET, SET_NULL, SET_DEFAULT, DO_NOTHING, ProtectedError)
from django.db.models import signals # NOQA