Skip to content

Commit

Permalink
Fix check function arguments for 0.15.x; Only check dependencies for now
Browse files Browse the repository at this point in the history
  • Loading branch information
emdoyle committed Nov 25, 2024
1 parent 8bb01f0 commit 594bfa2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bundled/tool/tach_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ def run_tach_check(argv: list[str], path: str):
exclude_paths = project_config.exclude

checked_result: CheckResult = check(
project_root=root, project_config=project_config, exclude_paths=exclude_paths
project_root=root,
project_config=project_config,
dependencies=True,
interfaces=False,
exclude_paths=exclude_paths,
)
return checked_result

0 comments on commit 594bfa2

Please sign in to comment.