src/eric7/Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
201 """ 201 """
202 rev = self.signaturesList.selectedItems()[0].text(0).split(":")[0].strip() 202 rev = self.signaturesList.selectedItems()[0].text(0).split(":")[0].strip()
203 self.vcs.getExtensionObject("gpg").hgGpgVerifySignatures(rev) 203 self.vcs.getExtensionObject("gpg").hgGpgVerifySignatures(rev)
204 204
205 @pyqtSlot(int) 205 @pyqtSlot(int)
206 def on_categoryCombo_activated(self, index): 206 def on_categoryCombo_activated(self, _index):
207 """ 207 """
208 Private slot called, when a new filter category is selected. 208 Private slot called, when a new filter category is selected.
209 209
210 @param index index of the selected entry 210 @param _index index of the selected entry (unused)
211 @type int 211 @type int
212 """ 212 """
213 self.__filterSignatures() 213 self.__filterSignatures()
214 214
215 @pyqtSlot(str) 215 @pyqtSlot(str)
216 def on_rxEdit_textChanged(self, txt): 216 def on_rxEdit_textChanged(self, _txt):
217 """ 217 """
218 Private slot called, when a filter expression is entered. 218 Private slot called, when a filter expression is entered.
219 219
220 @param txt filter expression 220 @param _txt filter expression (unused)
221 @type str 221 @type str
222 """ 222 """
223 self.__filterSignatures() 223 self.__filterSignatures()
224 224
225 def __filterSignatures(self): 225 def __filterSignatures(self):

eric ide

mercurial