From b3045bf7243b5acf663c46ebdbfa0a0531f11f97 Mon Sep 17 00:00:00 2001 From: wirehack7 Date: Thu, 1 May 2025 19:28:14 +0200 Subject: [PATCH] reformatted --- src/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 31a993f..c9984e8 100644 --- a/src/main.py +++ b/src/main.py @@ -218,7 +218,9 @@ async def generate( except Exception: # pylint: disable=W0718 error_data = "error message unreadable" - error_message = f"Error {status_code} at API-request.\n" f"Answer: {error_data}\n" + error_message = ( + f"Error {status_code} at API-request.\n" f"Answer: {error_data}\n" + ) await interaction.followup.send(error_message)