From 48ed73fb74213ba9ae2fdcc42d18a5a3e7737fe0 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Tue, 12 May 2020 08:52:23 +0200 Subject: [3.0.x] Fixed E128, E741 flake8 warnings. Backport of 0668164b4ac93a5be79f5b87fae83c657124d9ab from master. --- 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 98a51f57c8..156d525df8 100644 --- a/django/http/request.py +++ b/django/http/request.py @@ -338,7 +338,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.3