Skip to content

Commit

Permalink
Fixed E117 and F405 flake8 warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixxm authored Jan 30, 2019
1 parent 738faf9 commit 5a5c77d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/gis/gdal/envelope.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def expand_to_include(self, *args):
raise TypeError('Incorrect type of argument: %s' % type(args[0]))
elif len(args) == 2:
# An x and an y parameter were passed in
return self.expand_to_include((args[0], args[1], args[0], args[1]))
return self.expand_to_include((args[0], args[1], args[0], args[1]))
elif len(args) == 4:
# Individual parameters passed in.
return self.expand_to_include(args)
Expand Down
1 change: 1 addition & 0 deletions django/db/models/sql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from django.core.exceptions import EmptyResultSet
from django.db.models.sql.query import * # NOQA
from django.db.models.sql.query import Query
from django.db.models.sql.subqueries import * # NOQA
from django.db.models.sql.where import AND, OR

Expand Down

0 comments on commit 5a5c77d

Please sign in to comment.