chore: remove print()

This commit is contained in:
Vlad Stan 2023-02-23 12:00:49 +02:00
parent 752fad2e3c
commit a24762932c

View file

@ -109,7 +109,7 @@ async def ws_filter_subscribe(websocket: WebSocket):
await websocket.accept() await websocket.accept()
while True: while True:
json_data = await websocket.receive_text() json_data = await websocket.receive_text()
print('### nostrclient', json_data) # print('### nostrclient', json_data)
try: try:
data = json.loads(json_data) data = json.loads(json_data)
filters = data if isinstance(data, list) else [data] filters = data if isinstance(data, list) else [data]