Skip to content

Commit d18cd65

Browse files
committed
Fix linter
1 parent ff0310b commit d18cd65

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

juju/client/connection.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,7 @@ def status(self):
218218
if connection.is_debug_log_connection:
219219
stopped = connection._debug_log_task.cancelled()
220220
else:
221-
stopped = connection._receiver_task is not None and \
222-
connection._receiver_task.cancelled()
221+
stopped = connection._receiver_task is not None and connection._receiver_task.cancelled()
223222

224223
if stopped or not connection._ws.open:
225224
return self.ERROR

0 commit comments

Comments
 (0)