diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-05-12 08:52:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 08:52:23 +0200 |
commit | 0668164b4ac93a5be79f5b87fae83c657124d9ab (patch) | |
tree | 71c08a5331f99515fbc859484b61d452a045dbb3 /django/http/request.py | |
parent | e6ec76d2455d0fd57ad766acd3714538b24a8989 (diff) | |
download | django-0668164b4ac93a5be79f5b87fae83c657124d9ab.tar.gz |
Fixed E128, E741 flake8 warnings.
Diffstat (limited to 'django/http/request.py')
-rw-r--r-- | django/http/request.py | 2 |
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. |