🔇 Removed print- and console.log-statements

This commit is contained in:
Mawoka
2022-06-09 17:43:46 +02:00
parent 2519451c97
commit bba85009bd
6 changed files with 0 additions and 90 deletions
-1
View File
@@ -34,7 +34,6 @@ async def generate_spreadsheet(quiz_results: dict, quiz: Quiz) -> BytesIO:
try:
async with ClientSession() as session, session.get(question["image"]) as response:
print("OK!!!!")
img_data = BytesIO(await response.read())
worksheet.insert_image(i + 1, 2, question["image"], {"image_data": img_data})
image = Image.open(img_data)