diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-04 15:13:15 -0800 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-04 15:13:15 -0800 |
| commit | a248c88372fa445c1159511fae2b98208f149f69 (patch) | |
| tree | fedb11cc7ff075c96baac5adf4be6903f11ac5f0 /django | |
| parent | 3e25c8ac69ae336102d91f1d2591ab03f3a91e33 (diff) | |
Fixed three small flake8 violations.
Diffstat (limited to 'django')
| -rw-r--r-- | django/db/migrations/state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/migrations/state.py b/django/db/migrations/state.py index 90226221be..ab2bd8e6d8 100644 --- a/django/db/migrations/state.py +++ b/django/db/migrations/state.py @@ -166,7 +166,7 @@ class ModelState(object): # __bases__ we may end up with duplicates and ordering issues, we # therefore discard any duplicates and reorder the bases according # to their index in the MRO. - flattened_bases = sorted(set(flatten_bases(model)), key=lambda x:model.__mro__.index(x)) + flattened_bases = sorted(set(flatten_bases(model)), key=lambda x: model.__mro__.index(x)) # Make our record bases = tuple( |
