diff -r eb1b3e0577e4 -r b6cbdba69967 DebugClients/Python3/DebugClient.py --- a/DebugClients/Python3/DebugClient.py Thu Sep 01 20:03:50 2016 +0200 +++ b/DebugClients/Python3/DebugClient.py Fri Sep 02 19:14:41 2016 +0200 @@ -7,12 +7,11 @@ Module implementing a non-threaded variant of the debug client. """ -from AsyncIO import AsyncIO from DebugBase import DebugBase import DebugClientBase -class DebugClient(DebugClientBase.DebugClientBase, AsyncIO, DebugBase): +class DebugClient(DebugClientBase.DebugClientBase, DebugBase): """ Class implementing the client side of the debugger. @@ -23,8 +22,6 @@ """ Constructor """ - AsyncIO.__init__(self) - DebugClientBase.DebugClientBase.__init__(self) DebugBase.__init__(self, self)