Correct wong class names in super()

This commit is contained in:
rocky
2020-05-08 05:59:20 -04:00
parent a810ed1280
commit 5233a0716b
6 changed files with 9 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ from uncompyle6.parsers.parse22 import Python22Parser
class Python21Parser(Python22Parser):
def __init__(self, debug_parser=PARSER_DEFAULT_DEBUG):
super(Python22Parser, self).__init__(debug_parser)
super(Python21Parser, self).__init__(debug_parser)
self.customized = {}
def p_forstmt21(self, args):