From ca2253c6600c231a86b72261ccaa3182fc2ec385 Mon Sep 17 00:00:00 2001 From: Mawoka Date: Thu, 9 Jun 2022 17:37:50 +0200 Subject: [PATCH] :rotating_light: Removed unused parameter --- classquiz/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classquiz/helpers.py b/classquiz/helpers.py index 1cc131d..9f974ab 100644 --- a/classquiz/helpers.py +++ b/classquiz/helpers.py @@ -15,7 +15,7 @@ async def get_meili_data(quiz: Quiz) -> dict: } -async def generate_spreadsheet(quiz_results: dict, quiz: Quiz, with_images: bool = True) -> BytesIO: +async def generate_spreadsheet(quiz_results: dict, quiz: Quiz) -> BytesIO: storage = BytesIO() workbook = xlsxwriter.Workbook(storage, {"in_memory": True}) worksheet = workbook.add_worksheet()