From b96194d51a40e14db69488d2f001ea042fe4f906 Mon Sep 17 00:00:00 2001 From: correctmost <134317971+correctmost@users.noreply.github.com> Date: Sat, 16 Nov 2024 04:54:46 -0500 Subject: [PATCH] Fix super-call-with-parameters (UP008) Ruff warning (#2832) --- archinstall/lib/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/exceptions.py b/archinstall/lib/exceptions.py index f11308de..022a1038 100644 --- a/archinstall/lib/exceptions.py +++ b/archinstall/lib/exceptions.py @@ -18,7 +18,7 @@ class UnknownFilesystemFormat(Exception): class SysCallError(Exception): def __init__(self, message: str, exit_code: Optional[int] = None, worker: Optional['SysCommandWorker'] = None) -> None: - super(SysCallError, self).__init__(message) + super().__init__(message) self.message = message self.exit_code = exit_code self.worker = worker