diff --git a/Ghidra/Features/PyGhidra/ghidra_scripts/PyGhidraBasics.py b/Ghidra/Features/PyGhidra/ghidra_scripts/PyGhidraBasics.py index f60655d807..242613c6cd 100644 --- a/Ghidra/Features/PyGhidra/ghidra_scripts/PyGhidraBasics.py +++ b/Ghidra/Features/PyGhidra/ghidra_scripts/PyGhidraBasics.py @@ -17,6 +17,9 @@ # @category: Examples.Python # @runtime PyGhidra +import typing +if typing.TYPE_CHECKING: + from ghidra.ghidra_builtins import * # we can import java libraries just as if they were python libraries from java.util import LinkedList