diff options
| author | KyleMiles <krm504@nyu.edu> | 2023-07-09 15:49:29 -0400 |
|---|---|---|
| committer | KyleMiles <krm504@nyu.edu> | 2023-07-10 12:58:36 -0400 |
| commit | c549cb94942c955f352f965bda996ffaa34cf56f (patch) | |
| tree | 83fa6f7375bde8b0bb9b94fc7f0698d281057b23 /python/typelibrary.py | |
| parent | 6325884782a47e0c89154cf7ce0952368e25ea2a (diff) | |
Fix broken python bindings
Diffstat (limited to 'python/typelibrary.py')
| -rw-r--r-- | python/typelibrary.py | 2 |
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. |
