🔇 Removed logs

This commit is contained in:
Mawoka
2022-04-15 20:42:42 +02:00
parent 061c409dc3
commit 1090f21ac3
2 changed files with 2 additions and 4 deletions
+2 -3
View File
@@ -12,7 +12,6 @@ settings = settings()
@sio.event
async def join_game(sid, data):
print(sid, data, "JOIN_GAME")
async with aiohttp.ClientSession() as session:
try:
async with session.post(
@@ -21,10 +20,10 @@ async def join_game(sid, data):
) as resp:
resp_data = await resp.json()
if not resp_data["success"]:
print("CAPTCHA FAILED", resp_data)
print("CAPTCHA FAILED")
return
except KeyError:
print("CAPTCHA FAILED", "KeyError")
print("CAPTCHA FAILED")
return
redis_res = await redis.get(f"game:{data['game_pin']}")