Skip to content
Snippets Groups Projects
Commit c8aaab32 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

ServerInfo: Fix pylint errors

parent 9b58bcd1
No related branches found
No related tags found
No related merge requests found
......@@ -129,7 +129,7 @@ def _add_connection_info(self):
self._ui.cert_button.set_sensitive(self.cert)
def _on_cert_button_clicked(self, button_):
def _on_cert_button_clicked(self, _button):
open_window('CertificateDialog',
account=self.account,
transient_for=self,
......@@ -180,7 +180,7 @@ def update(func, listbox):
row.get_child().update(item)
row.set_tooltip_text(row.get_child().tooltip)
def _server_disco_received(self, obj):
def _server_disco_received(self, _event):
self.update(self.get_features, self.feature_listbox)
def add_feature(self, feature):
......@@ -236,7 +236,7 @@ def get_features(self):
con.get_module('Bookmarks').conversion)
]
def _on_clipboard_button_clicked(self, widget):
def _on_clipboard_button_clicked(self, _widget):
server_software = 'Server Software: %s\n' % self.version
server_features = ''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment