From caca271e19eacf7154faa88a0f66fc11f8349b97 Mon Sep 17 00:00:00 2001 From: ArabCoders Date: Fri, 3 Nov 2023 15:23:02 +0300 Subject: [PATCH] Fixed code style --- app/main.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/app/main.py b/app/main.py index 9c9054b..d1cc7d1 100644 --- a/app/main.py +++ b/app/main.py @@ -133,16 +133,13 @@ async def delete(request): return web.Response(text=serializer.encode(status)) @routes.get(config.URL_PREFIX + 'history') -async def list_queue(_): - history = []; +async def history(request): + history = { 'done': [], 'queue': []} + for _ ,v in dqueue.queue.saved_items(): - obj = vars(v) - obj['list_type'] = 'queue' - history.append(obj) + history['queue'].append(vars(v)) for _ ,v in dqueue.done.saved_items(): - obj = vars(v) - obj['list_type'] = 'done' - history.append(obj) + history['done'].append(vars(v)) return web.Response(text=json.dumps(history))