summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0242.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-10-22 13:35:54 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-10-22 13:37:46 +0100
commitd008988843f61efb57cb06a30b8a47a357e248a4 (patch)
treee1bd486fd53639561f5af179451f846e371b570c /slixmpp/plugins/xep_0242.py
parentdcacc7d7d50d3f720cb14f1382c6d4f5a13664a4 (diff)
downloadslixmpp-d008988843f61efb57cb06a30b8a47a357e248a4.tar.gz
slixmpp-d008988843f61efb57cb06a30b8a47a357e248a4.tar.bz2
slixmpp-d008988843f61efb57cb06a30b8a47a357e248a4.tar.xz
slixmpp-d008988843f61efb57cb06a30b8a47a357e248a4.zip
Manual cleanup of the remaining set([…]) and set((…)).
Diffstat (limited to 'slixmpp/plugins/xep_0242.py')
-rw-r--r--slixmpp/plugins/xep_0242.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/slixmpp/plugins/xep_0242.py b/slixmpp/plugins/xep_0242.py
index ea077a70..27e4e7c8 100644
--- a/slixmpp/plugins/xep_0242.py
+++ b/slixmpp/plugins/xep_0242.py
@@ -13,9 +13,9 @@ class XEP_0242(BasePlugin):
name = 'xep_0242'
description = 'XEP-0242: XMPP Client Compliance 2009'
- dependencies = set(['xep_0030', 'xep_0115', 'xep_0054',
- 'xep_0045', 'xep_0085', 'xep_0016',
- 'xep_0191'])
+ dependencies = {'xep_0030', 'xep_0115', 'xep_0054',
+ 'xep_0045', 'xep_0085', 'xep_0016',
+ 'xep_0191'}
register_plugin(XEP_0242)