Room availability always returns a number (even if that room is not present)
This commit is contained in:
parent
fec10740a4
commit
a963f93d52
3
ext.py
3
ext.py
|
@ -177,7 +177,8 @@ class Quotas:
|
||||||
def get_left(self, capacity):
|
def get_left(self, capacity):
|
||||||
for quota in self.data['results']:
|
for quota in self.data['results']:
|
||||||
if quota['id'] == ROOM_MAP[capacity]:
|
if quota['id'] == ROOM_MAP[capacity]:
|
||||||
return quota['available_number']
|
return quota['available_number']
|
||||||
|
return 0
|
||||||
|
|
||||||
async def get_quotas(request: Request=None):
|
async def get_quotas(request: Request=None):
|
||||||
async with httpx.AsyncClient() as client:
|
async with httpx.AsyncClient() as client:
|
||||||
|
|
Loading…
Reference in New Issue