From f14df0bb201397d20d91277251b4d8e1e3d23ad4 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Tue, 10 Dec 2024 01:35:33 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=85=20Add=20a=20return=20type=20to=20`?= =?UTF-8?q?die()`=20@=20attestations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- attestations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attestations.py b/attestations.py index 8c66cff..6972ae2 100644 --- a/attestations.py +++ b/attestations.py @@ -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)