removed print statement

This commit is contained in:
VJHack 2024-09-12 23:04:53 -05:00
parent e51eb59861
commit df9f16747f

View File

@ -1237,7 +1237,6 @@ async def wait_for_slots_status(context,
while True: while True:
async with await session.get(f'{base_url}/slots', params=params) as slots_response: async with await session.get(f'{base_url}/slots', params=params) as slots_response:
status_code = slots_response.status status_code = slots_response.status
print(await slots_response.text())
slots = await slots_response.json() slots = await slots_response.json()
if context.debug: if context.debug:
print(f"slots responses {slots}\n") print(f"slots responses {slots}\n")