Skip to content

Commit

Permalink
black check
Browse files Browse the repository at this point in the history
  • Loading branch information
v00g100skr committed Dec 9, 2024
1 parent 93370ea commit a1e4f14
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deploy/web_server/web_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,9 @@ async def drones_v3(request):
async def etryvoga_full(request):
if request.path_params["token"] == data_token:
etryvoga_full = await mc.get(b"etryvoga_full")
return JSONResponse(json.loads(etryvoga_full.decode("utf-8")), headers={"Content-Type": "application/json; charset=utf-8"})
return JSONResponse(
json.loads(etryvoga_full.decode("utf-8")), headers={"Content-Type": "application/json; charset=utf-8"}
)
else:
return JSONResponse({})

Expand Down

0 comments on commit a1e4f14

Please sign in to comment.