Skip to content

Commit

Permalink
Removed debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
dieudonneWillems committed Jun 20, 2023
1 parent e7161af commit e4153b8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions oida/commands/linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e4153b8

Please sign in to comment.