summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0054/stanza.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-09-30 21:25:36 +0200
committermathieui <mathieui@mathieui.net>2016-09-30 21:25:36 +0200
commit46a90749f839c3d64aa05458cef825f56e9c702d (patch)
tree207a8e9228f6b6b7efde2cef405bf712a505860e /slixmpp/plugins/xep_0054/stanza.py
parent0c63a4bbdafcb557430e02f774dc88c5f2a974c1 (diff)
downloadslixmpp-46a90749f839c3d64aa05458cef825f56e9c702d.tar.gz
slixmpp-46a90749f839c3d64aa05458cef825f56e9c702d.tar.bz2
slixmpp-46a90749f839c3d64aa05458cef825f56e9c702d.tar.xz
slixmpp-46a90749f839c3d64aa05458cef825f56e9c702d.zip
Fix uses of super() in the codebase
Fix #3165, we don’t need to use the long form to get the superobject in our supported python versions.
Diffstat (limited to 'slixmpp/plugins/xep_0054/stanza.py')
-rw-r--r--slixmpp/plugins/xep_0054/stanza.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0054/stanza.py b/slixmpp/plugins/xep_0054/stanza.py
index 48a41432..e7647184 100644
--- a/slixmpp/plugins/xep_0054/stanza.py
+++ b/slixmpp/plugins/xep_0054/stanza.py
@@ -127,7 +127,7 @@ class Telephone(ElementBase):
'ISDN', 'PCS', 'PREF'])
def setup(self, xml=None):
- super(Telephone, self).setup(xml=xml)
+ super().setup(xml=xml)
## this blanks out numbers received from server
##self._set_sub_text('NUMBER', '', keep=True)