From fde12b3b8eb78b2a8c7447456c1fd194b0d512be Mon Sep 17 00:00:00 2001 From: Anton Bolshakov Date: Sun, 24 Aug 2025 11:34:30 +0800 Subject: [PATCH] mend pyghidra-mcp: WiP --- scripts/python_dependencies.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/python_dependencies.py b/scripts/python_dependencies.py index e56b3ef21..ebbec6b6b 100755 --- a/scripts/python_dependencies.py +++ b/scripts/python_dependencies.py @@ -210,10 +210,8 @@ def distutils_setup(): print("\"") def main(): - pyproject_toml() - - #if pyproject_toml(): - # distutils_setup() + if pyproject_toml(): + distutils_setup() if __name__ == '__main__': main()