🚧 add store pagination

This commit is contained in:
yanyongyu
2021-12-30 12:50:30 +08:00
parent 23d0b2509e
commit d1706e438b
7 changed files with 75 additions and 18 deletions

View File

@ -43,7 +43,7 @@ def catch_closed(func):
async def decorator(*args, **kwargs):
try:
return await func(*args, **kwargs)
except asyncio.CancelledError as e:
except asyncio.CancelledError:
raise WebSocketClosed(1000)
return decorator