summaryrefslogtreecommitdiff
path: root/django/contrib/contenttypes/generic.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/contenttypes/generic.py')
-rw-r--r--django/contrib/contenttypes/generic.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/django/contrib/contenttypes/generic.py b/django/contrib/contenttypes/generic.py
index 19622d33d8..92df783d02 100644
--- a/django/contrib/contenttypes/generic.py
+++ b/django/contrib/contenttypes/generic.py
@@ -10,12 +10,12 @@ warnings.warn(
'submodules of django.contrib.contenttypes.'), RemovedInDjango19Warning, stacklevel=2
)
-from django.contrib.contenttypes.admin import ( # NOQA
- GenericInlineModelAdmin, GenericStackedInline, GenericTabularInline
+from django.contrib.contenttypes.admin import ( # NOQA isort:skip
+ GenericInlineModelAdmin, GenericStackedInline, GenericTabularInline,
)
-from django.contrib.contenttypes.fields import ( # NOQA
- GenericForeignKey, GenericRelation
+from django.contrib.contenttypes.fields import ( # NOQA isort:skip
+ GenericForeignKey, GenericRelation,
)
-from django.contrib.contenttypes.forms import ( # NOQA
- BaseGenericInlineFormSet, generic_inlineformset_factory
+from django.contrib.contenttypes.forms import ( # NOQA isort:skip
+ BaseGenericInlineFormSet, generic_inlineformset_factory,
)