💅 Add a return type to die() @ attestations

This commit is contained in:
Sviatoslav Sydorenko 2024-12-10 01:35:33 +01:00
parent 67339c736f
commit f14df0bb20
No known key found for this signature in database
GPG key ID: 9345E8FEA89CA455

View file

@ -47,7 +47,7 @@ def die(msg: str) -> NoReturn:
sys.exit(1)
def debug(msg: str):
def debug(msg: str) -> None:
print(f'::debug::{msg}', file=sys.stderr)