From b1b820f4cbf4c6a02a9c4638a1f1887d66dbde9c Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Thu, 2 Dec 2021 20:20:31 +0000 Subject: Fixing some mypy complaints (#780) * Fixed some mypy issues regarding SysCommand* and logging * Fixed imports and undefined variable --- archinstall/lib/exceptions.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'archinstall/lib/exceptions.py') diff --git a/archinstall/lib/exceptions.py b/archinstall/lib/exceptions.py index 147b239b..aa86124b 100644 --- a/archinstall/lib/exceptions.py +++ b/archinstall/lib/exceptions.py @@ -1,3 +1,5 @@ +from typing import Optional + class RequirementError(BaseException): pass @@ -15,7 +17,7 @@ class ProfileError(BaseException): class SysCallError(BaseException): - def __init__(self, message, exit_code): + def __init__(self, message :str, exit_code :Optional[int]) -> None: super(SysCallError, self).__init__(message) self.message = message self.exit_code = exit_code -- cgit v1.2.3-54-g00ecf