From 62b816c60b3169cbbeb51092fe3572968eeee1a7 Mon Sep 17 00:00:00 2001 From: rocky Date: Wed, 21 Sep 2022 02:08:08 -0400 Subject: [PATCH] Correct a signature return --- uncompyle6/semantics/pysource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uncompyle6/semantics/pysource.py b/uncompyle6/semantics/pysource.py index 4c6f9528..2cac04bf 100644 --- a/uncompyle6/semantics/pysource.py +++ b/uncompyle6/semantics/pysource.py @@ -329,7 +329,7 @@ class SourceWalker(GenericASTTraversal, NonterminalActions, ComprehensionMixin): if self.showast.get(phase, False): maybe_show_tree(self, ast) - def str_with_template(self, ast) -> str: + def str_with_template(self, ast): stream = sys.stdout stream.write(self.str_with_template1(ast, "", None)) stream.write("\n")