mirror of
https://github.com/alexta69/metube.git
synced 2025-04-03 20:27:36 +03:00
Fixed code style
This commit is contained in:
parent
fead1f99c7
commit
caca271e19
1 changed files with 5 additions and 8 deletions
13
app/main.py
13
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))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue