We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff0310b commit d18cd65Copy full SHA for d18cd65
1 file changed
juju/client/connection.py
@@ -218,8 +218,7 @@ def status(self):
218
if connection.is_debug_log_connection:
219
stopped = connection._debug_log_task.cancelled()
220
else:
221
- stopped = connection._receiver_task is not None and \
222
- connection._receiver_task.cancelled()
+ stopped = connection._receiver_task is not None and connection._receiver_task.cancelled()
223
224
if stopped or not connection._ws.open:
225
return self.ERROR
0 commit comments