pep8: fix E202 violations
This commit is contained in:
parent
418f396b32
commit
439dc8ca96
|
@ -37,7 +37,7 @@ logging.basicConfig()
|
||||||
|
|
||||||
log = logging.getLogger('zulip-send')
|
log = logging.getLogger('zulip-send')
|
||||||
|
|
||||||
def do_send_message(client, message_data ):
|
def do_send_message(client, message_data):
|
||||||
# type: (zulip.Client, Dict[str, Any]) -> bool
|
# type: (zulip.Client, Dict[str, Any]) -> bool
|
||||||
'''Sends a message and optionally prints status about the same.'''
|
'''Sends a message and optionally prints status about the same.'''
|
||||||
|
|
||||||
|
|
|
@ -389,7 +389,7 @@ def process_notice(notice, log):
|
||||||
zeph = { 'time': str(notice.time),
|
zeph = { 'time': str(notice.time),
|
||||||
'sender': notice.sender,
|
'sender': notice.sender,
|
||||||
'zsig': zsig, # logged here but not used by app
|
'zsig': zsig, # logged here but not used by app
|
||||||
'content': body }
|
'content': body}
|
||||||
if is_huddle:
|
if is_huddle:
|
||||||
zeph['type'] = 'private'
|
zeph['type'] = 'private'
|
||||||
zeph['recipient'] = huddle_recipients
|
zeph['recipient'] = huddle_recipients
|
||||||
|
|
Loading…
Reference in a new issue