From 550be45b5e13bbe540549665a0090f5e726d9523 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20B=C4=83ncioiu?= Date: Mon, 8 Apr 2024 14:23:48 +0300 Subject: [PATCH] Fix contract report: twiggy dependency is managed by "deps rust". --- .../projects/report/features/twiggy_paths_check.py | 1 - 1 file changed, 1 deletion(-) diff --git a/multiversx_sdk_cli/projects/report/features/twiggy_paths_check.py b/multiversx_sdk_cli/projects/report/features/twiggy_paths_check.py index 8d8cbab3..31fa51ff 100644 --- a/multiversx_sdk_cli/projects/report/features/twiggy_paths_check.py +++ b/multiversx_sdk_cli/projects/report/features/twiggy_paths_check.py @@ -31,7 +31,6 @@ def run_twiggy_paths(wasm_path: Path) -> Path: rust = dependencies.get_module_by_key("rust") debug_wasm_path = _get_debug_wasm_path(wasm_path) - dependencies.install_module("twiggy") twiggy_paths_args = ["twiggy", "paths", str(debug_wasm_path)] output = myprocess.run_process(twiggy_paths_args, env=rust.get_env(), cwd=debug_wasm_path.parent, dump_to_stdout=False)