summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2023-07-09 15:49:29 -0400
committerKyleMiles <krm504@nyu.edu>2023-07-10 12:58:36 -0400
commitc549cb94942c955f352f965bda996ffaa34cf56f (patch)
tree83fa6f7375bde8b0bb9b94fc7f0698d281057b23 /python
parent6325884782a47e0c89154cf7ce0952368e25ea2a (diff)
Fix broken python bindings
Diffstat (limited to 'python')
-rw-r--r--python/typelibrary.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/typelibrary.py b/python/typelibrary.py
index adc3919d..eff60781 100644
--- a/python/typelibrary.py
+++ b/python/typelibrary.py
@@ -43,7 +43,7 @@ class TypeLibrary:
return f"<typelib '{self.name}':{self.arch.name}>"
@staticmethod
- def new(arch: architecture.Architecture, name:str) -> 'TypeLibrary':
+ def new(arch: 'architecture.Architecture', name:str) -> 'TypeLibrary':
"""
Creates an empty type library object with a random GUID and
the provided name.