Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-04-02 18:04:35 +0300
committerlovetox <philipp@hoerist.com>2022-04-02 18:04:48 +0300
commite80c9325a77ff2f03b86367007a806fafaa4a5ca (patch)
tree6bad1362321a1c001743fff4afcf22ec4ad4c951 /nbxmpp/old_dispatcher.py
parenta55e844c455066b22f2205524553020e60a71a36 (diff)
ci: Fix Pylint errors
Diffstat (limited to 'nbxmpp/old_dispatcher.py')
-rw-r--r--nbxmpp/old_dispatcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nbxmpp/old_dispatcher.py b/nbxmpp/old_dispatcher.py
index 88b6474..63073c1 100644
--- a/nbxmpp/old_dispatcher.py
+++ b/nbxmpp/old_dispatcher.py
@@ -290,7 +290,7 @@ class XMPPDispatcher(PlugIn):
self._owner.send("%s%s>" % (XML_DECLARATION,
str(self._metastream)[:-2]))
- def _check_stream_start(self, ns, tag, attrs):
+ def _check_stream_start(self, ns, tag, _attrs):
if ns != Namespace.STREAMS or tag != 'stream':
raise ValueError('Incorrect stream start: '
'(%s,%s). Terminating.' % (tag, ns))