GP-0: Fixing PyGhidra typo

This commit is contained in:
Ryan Kurtz 2025-01-08 19:06:13 -05:00
parent 0d198a9944
commit 0d3451c0c0
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ def start(verbose=False, *, install_dir: Path = None) -> "PyGhidraLauncher":
:param verbose: Enable verbose output during JVM startup (Defaults to False)
:param install_dir: The path to the Ghidra installation directory.
(Defaults to the GHIDRA_INSTALL_DIR environment variable)
:return: The PhyidraLauncher used to start the JVM
:return: The PyGhidraLauncher used to start the JVM
"""
```

View file

@ -34,7 +34,7 @@ def start(verbose=False, *, install_dir: Path = None) -> "PyGhidraLauncher":
:param verbose: Enable verbose output during JVM startup (Defaults to False)
:param install_dir: The path to the Ghidra installation directory.
(Defaults to the GHIDRA_INSTALL_DIR environment variable)
:return: The PhyidraLauncher used to start the JVM
:return: The PyGhidraLauncher used to start the JVM
"""
from pyghidra.launcher import HeadlessPyGhidraLauncher
launcher = HeadlessPyGhidraLauncher(verbose=verbose, install_dir=install_dir)