PEP8 formatting updates.
This commit is contained in:
@@ -21,7 +21,7 @@ class UserActivity(ElementBase):
|
||||
'talking', 'traveling', 'undefined', 'working'])
|
||||
specific = set(['at_the_spa', 'brushing_teeth', 'buying_groceries',
|
||||
'cleaning', 'coding', 'commuting', 'cooking', 'cycling',
|
||||
'dancing', 'day_off', 'doing_maintenance',
|
||||
'dancing', 'day_off', 'doing_maintenance',
|
||||
'doing_the_dishes', 'doing_the_laundry', 'driving',
|
||||
'fishing', 'gaming', 'gardening', 'getting_a_haircut',
|
||||
'going_out', 'hanging_out', 'having_a_beer',
|
||||
@@ -31,11 +31,11 @@ class UserActivity(ElementBase):
|
||||
'jogging', 'on_a_bus', 'on_a_plane', 'on_a_train',
|
||||
'on_a_trip', 'on_the_phone', 'on_vacation',
|
||||
'on_video_phone', 'other', 'partying', 'playing_sports',
|
||||
'praying', 'reading', 'rehearsing', 'running',
|
||||
'praying', 'reading', 'rehearsing', 'running',
|
||||
'running_an_errand', 'scheduled_holiday', 'shaving',
|
||||
'shopping', 'skiing', 'sleeping', 'smoking',
|
||||
'socializing', 'studying', 'sunbathing', 'swimming',
|
||||
'taking_a_bath', 'taking_a_shower', 'thinking',
|
||||
'taking_a_bath', 'taking_a_shower', 'thinking',
|
||||
'walking', 'walking_the_dog', 'watching_a_movie',
|
||||
'watching_tv', 'working_out', 'writing'])
|
||||
|
||||
@@ -46,7 +46,7 @@ class UserActivity(ElementBase):
|
||||
if isinstance(value, tuple) or isinstance(value, list):
|
||||
general = value[0]
|
||||
specific = value[1]
|
||||
|
||||
|
||||
if general in self.general:
|
||||
gen_xml = ET.Element('{%s}%s' % (self.namespace, general))
|
||||
if specific:
|
||||
|
@@ -29,7 +29,7 @@ class XEP_0108(BasePlugin):
|
||||
def plugin_init(self):
|
||||
self.xmpp['xep_0163'].register_pep('user_activity', UserActivity)
|
||||
|
||||
def publish_activity(self, general, specific=None, text=None, options=None,
|
||||
def publish_activity(self, general, specific=None, text=None, options=None,
|
||||
ifrom=None, block=True, callback=None, timeout=None):
|
||||
"""
|
||||
Publish the user's current activity.
|
||||
@@ -76,7 +76,7 @@ class XEP_0108(BasePlugin):
|
||||
be executed when a reply stanza is received.
|
||||
"""
|
||||
activity = UserActivity()
|
||||
return self.xmpp['xep_0163'].publish(activity,
|
||||
return self.xmpp['xep_0163'].publish(activity,
|
||||
node=UserActivity.namespace,
|
||||
ifrom=ifrom,
|
||||
block=block,
|
||||
|
Reference in New Issue
Block a user