From 9a2d2fd739c612d2de57e017106bab2447b7ddd6 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Thu, 9 Jan 2025 14:47:09 -0800 Subject: [PATCH] check_imports: log success --- .github/scripts/check_imports.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/scripts/check_imports.py b/.github/scripts/check_imports.py index 07a34e13..91c5d761 100644 --- a/.github/scripts/check_imports.py +++ b/.github/scripts/check_imports.py @@ -25,6 +25,8 @@ async def run_subproc(py_bin: str, file: Path) -> None: err = f'The following file has an invalid import: {file}' raise RuntimeError(err) + print(f"File '{file}' has valid imports") + async def main() -> None: # noqa: D103 """Validate import statements for files in gamefixes-*. by running them."""