Manual cleanup of the remaining set([…]) and set((…)).

This commit is contained in:
Emmanuel Gil Peyrot
2016-10-22 13:35:54 +01:00
parent dcacc7d7d5
commit f4683546d9
35 changed files with 180 additions and 178 deletions

View File

@@ -14,8 +14,8 @@ class UserTune(ElementBase):
name = 'tune'
namespace = 'http://jabber.org/protocol/tune'
plugin_attrib = 'tune'
interfaces = set(['artist', 'length', 'rating', 'source',
'title', 'track', 'uri'])
interfaces = {'artist', 'length', 'rating', 'source',
'title', 'track', 'uri'}
sub_interfaces = interfaces
def set_length(self, value):