Skip to content

Commit 10924d2

Browse files
committed
.
1 parent a219be1 commit 10924d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_event_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ async def send_platform_event(event_name: Event, data: Any = None) -> None:
167167
if data:
168168
message['data'] = data
169169

170-
websockets.broadcast(connected_ws_clients, json.dumps(message)) # type: ignore
170+
websockets.broadcast(connected_ws_clients, json.dumps(message))
171171

172172
async with websockets.server.serve(handler, host='localhost') as ws_server:
173173
# When you don't specify a port explicitly, the websocket connection is opened on a random free port.

0 commit comments

Comments
 (0)