Use PY3 super() zero-argument syntax

This commit is contained in:
Ivan Kravets
2022-04-15 14:44:30 +03:00
parent eaff7f307c
commit 5a0a215bfc
35 changed files with 67 additions and 79 deletions
+1 -1
View File
@@ -32,5 +32,5 @@ $INIT_BREAK
"""
def __init__(self, *args, **kwargs):
super(MspdebugDebugConfig, self).__init__(*args, **kwargs)
super().__init__(*args, **kwargs)
self.port = ":2000"