Skip to content

Commit 2baf28a

Browse files
committed
Delete optimized away else
1 parent c264028 commit 2baf28a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

gql/transport/phoenix_channel_websockets.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -342,9 +342,8 @@ def _validate_data_response(d: Any, label: str) -> dict:
342342

343343
elif status == "timeout":
344344
raise TransportQueryError("reply timeout", query_id=answer_id)
345-
else:
346-
# missing or unrecognized status, just continue
347-
pass
345+
346+
# In case of missing or unrecognized status, just continue
348347

349348
elif event == "phx_error":
350349
# Sent if the channel has crashed

0 commit comments

Comments
 (0)