diff options
| author | Peter LaFosse <peter@vector35.com> | 2022-11-10 14:27:16 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-11-10 16:20:26 -0500 |
| commit | f91e7ddb4e9b376b1a73d538f10a37d1a2086c29 (patch) | |
| tree | f3fff9598f0475d5a3465840bab42a9a9d085fca /python | |
| parent | 261f0a2282b68c580b68633867271c39f1a3c076 (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.py | 2 |
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) |
