Skip to content
This repository was archived by the owner on Mar 13, 2022. It is now read-only.

Commit b68ca30

Browse files
committed
Fixes codestyle failures
Signed-off-by: Nabarun Pal <[email protected]>
1 parent a54f404 commit b68ca30

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

watch/watch.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,10 @@ def stream(self, func, *args, **kwargs):
171171
retry_after_410 = True
172172
break
173173
else:
174-
reason = "%s: %s" % (obj['reason'], obj['message'])
175-
raise client.rest.ApiException(status=obj['code'],
176-
reason=reason)
174+
reason = "%s: %s" % (
175+
obj['reason'], obj['message'])
176+
raise client.rest.ApiException(
177+
status=obj['code'], reason=reason)
177178
else:
178179
retry_after_410 = False
179180
yield event

0 commit comments

Comments
 (0)