From 594bfa2b0dab900b5df1809df94f7ba2bab542b0 Mon Sep 17 00:00:00 2001 From: Evan Doyle Date: Mon, 25 Nov 2024 14:43:14 -0800 Subject: [PATCH] Fix check function arguments for 0.15.x; Only check dependencies for now --- bundled/tool/tach_util.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bundled/tool/tach_util.py b/bundled/tool/tach_util.py index ee7c26f..d89771e 100644 --- a/bundled/tool/tach_util.py +++ b/bundled/tool/tach_util.py @@ -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