src/eric7/MicroPython/Devices/EspDialogs/EspBackupRestoreFirmwareDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
153 self.sizeComboBox.setCurrentText(selectedSize) 153 self.sizeComboBox.setCurrentText(selectedSize)
154 154
155 self.__updateOkButton() 155 self.__updateOkButton()
156 156
157 @pyqtSlot(str) 157 @pyqtSlot(str)
158 def on_sizeComboBox_currentTextChanged(self, size): 158 def on_sizeComboBox_currentTextChanged(self, _size):
159 """ 159 """
160 Private slot handling a change of the selected firmware size. 160 Private slot handling a change of the selected firmware size.
161 161
162 @param size selected size text 162 @param _size selected size text (unused)
163 @type str 163 @type str
164 """ 164 """
165 self.__updateOkButton() 165 self.__updateOkButton()
166 166
167 @pyqtSlot(str) 167 @pyqtSlot(str)
168 def on_firmwarePicker_textChanged(self, firmware): 168 def on_firmwarePicker_textChanged(self, _firmware):
169 """ 169 """
170 Private slot handling a change of the firmware path. 170 Private slot handling a change of the firmware path.
171 171
172 @param firmware path to the firmware 172 @param _firmware path to the firmware (unused)
173 @type str 173 @type str
174 """ 174 """
175 self.__updateOkButton() 175 self.__updateOkButton()
176 176
177 def getData(self): 177 def getData(self):

eric ide

mercurial