summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2022-11-10 14:27:16 -0500
committerPeter LaFosse <peter@vector35.com>2022-11-10 16:20:26 -0500
commitf91e7ddb4e9b376b1a73d538f10a37d1a2086c29 (patch)
treef3fff9598f0475d5a3465840bab42a9a9d085fca /python
parent261f0a2282b68c580b68633867271c39f1a3c076 (diff)
Fix some type hints, remove unnecessary parameters, and add some asserts to satisfy the type checker.
Diffstat (limited to 'python')
-rw-r--r--python/pluginmanager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pluginmanager.py b/python/pluginmanager.py
index 8b1461ed..de1491a8 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -37,7 +37,7 @@ class RepoPlugin:
def __init__(self, handle: core.BNRepoPluginHandle):
self.handle = handle
- def __del__(self) -> None:
+ def __del__(self):
if core is not None:
core.BNFreePlugin(self.handle)