Make the code argument non optional

This commit is contained in:
int3l 2020-09-16 23:31:48 +03:00 committed by GitHub
parent 544e941b27
commit c99db7830b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ class FatalError(RuntimeError):
def _log_and_exit( def _log_and_exit(
msg: str, msg: str,
code: int = 0, code: int,
exc: BaseException, exc: BaseException,
formatted: str, formatted: str,
) -> None: ) -> None: