[1.7.x] Fixed several flake8 errors

Backport of d17a4cb037 from master
This commit is contained in:
Alex Gaynor 2014-06-15 20:45:15 -04:00 committed by Tim Graham
parent a81282a512
commit 39e2ad4532
3 changed files with 7 additions and 7 deletions

View File

@ -163,8 +163,8 @@ class MigrationOptimizer(object):
""" """
Folds a CreateModel and a DeleteModel into nothing. Folds a CreateModel and a DeleteModel into nothing.
""" """
if operation.name.lower() == other.name.lower() and \ if (operation.name.lower() == other.name.lower() and
not operation.options.get("proxy", False): not operation.options.get("proxy", False)):
return [] return []
def reduce_model_alter_delete(self, operation, other, in_between): def reduce_model_alter_delete(self, operation, other, in_between):