From b116310afbb1940e2a13a3a2625a9069d7b489b9 Mon Sep 17 00:00:00 2001 From: Ryan Snyder Date: Tue, 18 Jul 2023 12:09:21 -0400 Subject: typelibrary: add methods for dependency info --- python/typelibrary.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'python/typelibrary.py') diff --git a/python/typelibrary.py b/python/typelibrary.py index eff60781..53f3e8ef 100644 --- a/python/typelibrary.py +++ b/python/typelibrary.py @@ -65,16 +65,6 @@ class TypeLibrary: """ return core.BNTypeLibraryDecompressToFile(path, output) - @staticmethod - def decompress(path: str) -> str: - """ - Decompresses a type library file to a string. - - :param str path: - :rtype: str - """ - return core.BNTypeLibraryDecompressToString(path) - @staticmethod def load_from_file(path: str) -> Optional['TypeLibrary']: """ @@ -407,3 +397,4 @@ class TypeLibrary: return result finally: core.BNFreeQualifiedNameAndTypeArray(named_types, count.value) + -- cgit v1.3.1