--- a/src/eric7/DebugClients/Python/DebugClient.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/DebugClients/Python/DebugClient.py Wed Jul 13 14:55:47 2022 +0200 @@ -17,20 +17,22 @@ """ Class implementing the client side of the debugger. """ + def __init__(self): """ Constructor """ DebugClientBase.__init__(self) - + DebugBase.__init__(self, self) - + ThreadExtension.__init__(self) - + self.__moduleLoader = ModuleLoader(self) + # We are normally called by the debugger to execute directly. -if __name__ == '__main__': +if __name__ == "__main__": debugClient = DebugClient() debugClient.main()