summaryrefslogtreecommitdiff
path: root/django/http/request.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-05-12 08:52:23 +0200
committerGitHub <noreply@github.com>2020-05-12 08:52:23 +0200
commit0668164b4ac93a5be79f5b87fae83c657124d9ab (patch)
tree71c08a5331f99515fbc859484b61d452a045dbb3 /django/http/request.py
parente6ec76d2455d0fd57ad766acd3714538b24a8989 (diff)
downloaddjango-0668164b4ac93a5be79f5b87fae83c657124d9ab.tar.gz
Fixed E128, E741 flake8 warnings.
Diffstat (limited to 'django/http/request.py')
-rw-r--r--django/http/request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/request.py b/django/http/request.py
index 192ade4de6..66809a74ed 100644
--- a/django/http/request.py
+++ b/django/http/request.py
@@ -361,7 +361,7 @@ class HttpRequest:
def close(self):
if hasattr(self, '_files'):
- for f in chain.from_iterable(l[1] for l in self._files.lists()):
+ for f in chain.from_iterable(list_[1] for list_ in self._files.lists()):
f.close()
# File-like and iterator interface.