From 0668164b4ac93a5be79f5b87fae83c657124d9ab Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Tue, 12 May 2020 08:52:23 +0200 Subject: Fixed E128, E741 flake8 warnings. --- django/http/request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/http/request.py') 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. -- cgit v1.2.1