diff options
Diffstat (limited to 'sleekxmpp/plugins/xep_0030/stanza')
-rw-r--r-- | sleekxmpp/plugins/xep_0030/stanza/items.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0030/stanza/items.py b/sleekxmpp/plugins/xep_0030/stanza/items.py index c424d90f..512f2336 100644 --- a/sleekxmpp/plugins/xep_0030/stanza/items.py +++ b/sleekxmpp/plugins/xep_0030/stanza/items.py @@ -6,7 +6,7 @@ See the file LICENSE for copying permission. """ -from sleekxmpp.xmlstream import ElementBase, ET, register_stanza_plugin +from sleekxmpp.xmlstream import ElementBase, register_stanza_plugin class DiscoItems(ElementBase): @@ -140,9 +140,11 @@ class DiscoItem(ElementBase): interfaces = set(('jid', 'node', 'name')) def get_node(self): + """Return the item's node name or ``None``.""" return self._get_attr('node', None) def get_name(self): + """Return the item's human readable name, or ``None``.""" return self._get_attr('name', None) |