Avoided assignment followed by immediate return.

Identified using the following command:

$ pcre2grep --line-number --multiline --recursive \
    "(?s)(\n +)(\w+) = [^\n]+\1return \2;?$" \
    django docs extras js_tests scripts tests
This commit is contained in:
Nick Pope 2022-10-28 14:51:34 +01:00 committed by Mariusz Felisiak
parent d3cb91db87
commit 2bc47d7fe9
5 changed files with 6 additions and 12 deletions

View file

@ -1027,8 +1027,7 @@ class ETagGZipMiddlewareTest(SimpleTestCase):
"""
def get_response(req):
response = HttpResponse(self.compressible_string)
return response
return HttpResponse(self.compressible_string)
def get_cond_response(req):
return ConditionalGetMiddleware(get_response)(req)