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

@@ -7,7 +7,7 @@ from uncompyle6.parsers.parse11 import Python11Parser
class Python10Parser(Python11Parser):
def __init__(self, debug_parser=PARSER_DEFAULT_DEBUG):
super(Python11Parser, self).__init__(debug_parser)
super(Python10Parser, self).__init__(debug_parser)
self.customized = {}