From e4153b8a53ee5ef4e546c33e4ecab9f4bcdb51cc Mon Sep 17 00:00:00 2001 From: Don Willems Date: Tue, 20 Jun 2023 12:54:10 +0200 Subject: [PATCH] Removed debugging code --- oida/commands/linter.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/oida/commands/linter.py b/oida/commands/linter.py index f1d2fe4..155ccb3 100644 --- a/oida/commands/linter.py +++ b/oida/commands/linter.py @@ -11,13 +11,9 @@ def print_violation( def run_linter(*paths: Path, checks: list[str]) -> bool: - print(f"paths: {paths}") - # for path in paths: - # statistics = StatisticsGenerator(path=path) has_violations = False checkers = get_checkers(checks) for module in find_modules(*paths): - print(f"module > {module.path}") component_config = get_component_config(path=module.path.parent) project_config = get_project_config(path=module.path.parent) for checker_cls in checkers: