From dd8b176133ff587b837a3b28237a2f8f960a2f02 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 25 Jun 2021 13:57:27 -0400 Subject: Refactor ILs for greater speed and utility --- python/function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/function.py') diff --git a/python/function.py b/python/function.py index 5111ea5d..36ecc52f 100644 --- a/python/function.py +++ b/python/function.py @@ -3530,7 +3530,7 @@ class InstructionTextToken: return result @staticmethod - def _get_core_struct(tokens:List['InstructionTextToken']) -> ctypes.Array[core.BNInstructionTextToken]: + def _get_core_struct(tokens:List['InstructionTextToken']) -> 'ctypes.Array[core.BNInstructionTextToken]': """ Helper method for converting between core.BNInstructionTextToken and InstructionTextToken lists """ result = (core.BNInstructionTextToken * len(tokens))() for j in range(len(tokens)): -- cgit v1.3.1