pep8: Fix E301 pep8 violations.

Fix "E301: expected (1 or 2) blank line" pep8 violations.
This commit is contained in:
Rafid Aslam
2016-11-29 13:22:02 +07:00
committed by Tim Abbott
parent 7a2282986a
commit 41bd88d5ed
35 changed files with 57 additions and 2 deletions

View File

@@ -146,6 +146,7 @@ class SimpleQueueClient(object):
# type: (str, bool) -> List[Dict[str, Any]]
"Returns all messages in the desired queue"
messages = []
def opened():
# type: () -> None
while True:
@@ -233,6 +234,7 @@ class TornadoQueueClient(SimpleQueueClient):
# Try to reconnect in two seconds
retry_seconds = 2
def on_timeout():
# type: () -> None
try: