GP-6825: Handling a possible NotADirectoryError in pyghidra_launcher.py

This commit is contained in:
Ryan Kurtz
2026-05-14 08:36:24 -04:00
parent be1c459488
commit 7601b2cf63
@@ -104,6 +104,8 @@ def find_supported_python_exe(install_dir: Path, dev: bool) -> List[str]:
return cmd
except FileNotFoundError:
pass
except NotADirectoryError:
pass
return None