GP-0: importing typing into PyGhidraBasics.py

This commit is contained in:
Ryan Kurtz 2025-01-14 09:17:56 -05:00
parent 31e926fd44
commit f9a6b575de

View file

@ -17,6 +17,9 @@
# @category: Examples.Python # @category: Examples.Python
# @runtime PyGhidra # @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 # we can import java libraries just as if they were python libraries
from java.util import LinkedList from java.util import LinkedList