lint: Clean up E126 PEP-8 rule.

This commit is contained in:
Tim Abbott 2017-01-23 22:06:13 -08:00
parent 31efc903bd
commit 722fc56534
8 changed files with 60 additions and 60 deletions

View file

@ -252,16 +252,16 @@ logger.info("Sent Zephyr messages!")
for key, (stream, test) in hzkeys.items():
if stream == "message":
send_zulip({
"type": "private",
"content": str(key),
"to": zulip_user,
"type": "private",
"content": str(key),
"to": zulip_user,
})
else:
send_zulip({
"type": "stream",
"subject": "test",
"content": str(key),
"to": stream,
"type": "stream",
"subject": "test",
"content": str(key),
"to": stream,
})
receive_zephyrs()