68 @param commandsInterface reference to the commands interface object |
68 @param commandsInterface reference to the commands interface object |
69 @type MicroPythonCommandsInterface |
69 @type MicroPythonCommandsInterface |
70 @param parent reference to the parent object |
70 @param parent reference to the parent object |
71 @type QObject |
71 @type QObject |
72 """ |
72 """ |
73 super(MicroPythonFileManager, self).__init__(parent) |
73 super().__init__(parent) |
74 |
74 |
75 self.__commandsInterface = commandsInterface |
75 self.__commandsInterface = commandsInterface |
76 |
76 |
77 @pyqtSlot(str) |
77 @pyqtSlot(str) |
78 def lls(self, dirname, showHidden=False): |
78 def lls(self, dirname, showHidden=False): |