From 96a653023fbb9f5cf482f8d5d71637de9b73af9c Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 17:30:10 +0000 Subject: [PATCH] fix: resolve CI issues - remove unused imports and fix code quality --- repohealth-cli/src/repohealth/cli/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 repohealth-cli/src/repohealth/cli/__init__.py diff --git a/repohealth-cli/src/repohealth/cli/__init__.py b/repohealth-cli/src/repohealth/cli/__init__.py new file mode 100644 index 0000000..d1aba99 --- /dev/null +++ b/repohealth-cli/src/repohealth/cli/__init__.py @@ -0,0 +1,3 @@ +from repohealth.cli.cli import analyze, main, report + +__all__ = ["main", "analyze", "report"]