diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-19 21:15:31 -0600 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-19 21:15:31 -0600 |
| commit | be8173af513dfb86edf8fc2fd981cc9ce101229e (patch) | |
| tree | 90964751c478bee168975dfa6148f6b7ecbc8985 /django | |
| parent | d818e0c9b2b88276cc499974f9eee893170bf0a8 (diff) | |
Fixed a small collection of flake8 violations that had snuck in
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/contenttypes/__init__.py | 2 | ||||
| -rw-r--r-- | django/db/models/fields/related.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/django/contrib/contenttypes/__init__.py b/django/contrib/contenttypes/__init__.py index e061c232a1..5a04849f06 100644 --- a/django/contrib/contenttypes/__init__.py +++ b/django/contrib/contenttypes/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -from django.contrib.contenttypes.checks import check_generic_foreign_keys +from django.contrib.contenttypes.checks import check_generic_foreign_keys from django.core import checks diff --git a/django/db/models/fields/related.py b/django/db/models/fields/related.py index 570547cdcc..75e5f20fea 100644 --- a/django/db/models/fields/related.py +++ b/django/db/models/fields/related.py @@ -18,7 +18,6 @@ from django.utils.deprecation import RenameMethodsBase from django.utils.translation import ugettext_lazy as _ from django.utils.functional import curry, cached_property from django.core import exceptions -from django.apps import apps from django import forms RECURSIVE_RELATIONSHIP_CONSTANT = 'self' |
