diff --git a/uncompyle6/parsers/reducecheck/pop_return.py b/uncompyle6/parsers/reducecheck/pop_return.py index e9da0264..815f4de7 100644 --- a/uncompyle6/parsers/reducecheck/pop_return.py +++ b/uncompyle6/parsers/reducecheck/pop_return.py @@ -1,9 +1,7 @@ # Copyright (c) 2020 Rocky Bernstein -def pop_return_check( - self, lhs: str, n: int, rule, ast, tokens: list, first: int, last: int -) -> bool: +def pop_return_check(self, lhs, n, rule, ast, tokens, first, last): # If the first instruction of return_expr (the instruction after POP_TOP) is # has a linestart, then the POP_TOP was probably part of the previous # statement, such as a call() where the return value is discarded.