From a24762932cb17c45bf510c5ffd8a546964c3cb9e Mon Sep 17 00:00:00 2001 From: Vlad Stan Date: Thu, 23 Feb 2023 12:00:49 +0200 Subject: [PATCH] chore: remove `print()` --- views_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views_api.py b/views_api.py index d7de7e8..86c834e 100644 --- a/views_api.py +++ b/views_api.py @@ -109,7 +109,7 @@ async def ws_filter_subscribe(websocket: WebSocket): await websocket.accept() while True: json_data = await websocket.receive_text() - print('### nostrclient', json_data) + # print('### nostrclient', json_data) try: data = json.loads(json_data) filters = data if isinstance(data, list) else [data]