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>2020-03-11 19:31:55 +0300
committerlovetox <philipp@hoerist.com>2020-03-11 21:00:54 +0300
commitd387550533d0ad997bc5e688a3aac13786847e7b (patch)
treec705db0a9e1be4ab598e73809c5d20de10d2518f /nbxmpp/simplexml.py
parent56581a8797482bf97109f825bdeb94bcd8735eeb (diff)
Fix pylint errors
- unused-argument - self-assigning-variable
Diffstat (limited to 'nbxmpp/simplexml.py')
-rw-r--r--nbxmpp/simplexml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nbxmpp/simplexml.py b/nbxmpp/simplexml.py
index 8f67e09..67427b1 100644
--- a/nbxmpp/simplexml.py
+++ b/nbxmpp/simplexml.py
@@ -672,7 +672,7 @@ class NodeBuilder:
def handle_invalid_xmpp_element(*args):
raise ExpatError('Found invalid xmpp stream element: %s' % str(args))
- def handle_namespace_start(self, prefix, uri):
+ def handle_namespace_start(self, _prefix, _uri):
"""
XML Parser callback. Used internally
"""