Skip to content

Commit d9e32c4

Browse files
authored
remove unused returnValue (#819)
last referenced in 2246217
1 parent ac563ed commit d9e32c4

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pyflakes/checker.py

-7
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,6 @@ def __init__(self):
543543
super().__init__()
544544
# Simplify: manage the special locals as globals
545545
self.globals = self.alwaysUsed.copy()
546-
self.returnValue = None # First non-empty return
547546

548547
def unused_assignments(self):
549548
"""
@@ -1888,12 +1887,6 @@ def RETURN(self, node):
18881887
self.report(messages.ReturnOutsideFunction, node)
18891888
return
18901889

1891-
if (
1892-
node.value and
1893-
hasattr(self.scope, 'returnValue') and
1894-
not self.scope.returnValue
1895-
):
1896-
self.scope.returnValue = node.value
18971890
self.handleNode(node.value, node)
18981891

18991892
def YIELD(self, node):

0 commit comments

Comments
 (0)