From 8cedad68265323bf98eacab2387043ef37ccce18 Mon Sep 17 00:00:00 2001 From: Rae Knowler Date: Fri, 17 May 2024 17:17:58 +0200 Subject: [PATCH] style: Fix long line --- src/exceptions.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/exceptions.py b/src/exceptions.py index bbf9f9e..c079164 100644 --- a/src/exceptions.py +++ b/src/exceptions.py @@ -51,7 +51,5 @@ def __init__(self, error_message): class EmptyFanFicFareResponseException(Exception): def __init__(self, command): - self.message = ( - f"Got no output when running the following command: {command}" - ) + self.message = f"Got no output when running the following command: {command}" super().__init__(self.message)