eric6/MicroPython/MicroPythonSerialPort.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
24 @param timeout timout in milliseconds to be set 24 @param timeout timout in milliseconds to be set
25 @type int 25 @type int
26 @param parent reference to the parent object 26 @param parent reference to the parent object
27 @type QObject 27 @type QObject
28 """ 28 """
29 super(MicroPythonSerialPort, self).__init__(parent) 29 super().__init__(parent)
30 30
31 self.__connected = False 31 self.__connected = False
32 self.__timeout = timeout # 10s default timeout 32 self.__timeout = timeout # 10s default timeout
33 self.__timedOut = False 33 self.__timedOut = False
34 34

eric ide

mercurial