335 @param deviceType device type assigned to this device interface |
335 @param deviceType device type assigned to this device interface |
336 @type str |
336 @type str |
337 @param parent reference to the parent object |
337 @param parent reference to the parent object |
338 @type QObject |
338 @type QObject |
339 """ |
339 """ |
340 super(MicroPythonDevice, self).__init__(parent) |
340 super().__init__(parent) |
341 |
341 |
342 self._deviceType = deviceType |
342 self._deviceType = deviceType |
343 self.microPython = microPythonWidget |
343 self.microPython = microPythonWidget |
344 |
344 |
345 def getDeviceType(self): |
345 def getDeviceType(self): |