diff options
| author | Sean Deaton <sean.deaton@me.com> | 2022-11-08 17:05:56 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-11-10 16:20:26 -0500 |
| commit | 261f0a2282b68c580b68633867271c39f1a3c076 (patch) | |
| tree | cff4652e7baa0b2205b585b7ee9dbd53f75b856f /python | |
| parent | 216df2539af063b8eb264945a546a37665d95ce5 (diff) | |
Update ambiguous exception message.
Add typing information.
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 de1491a8..8b1461ed 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): + def __del__(self) -> None: if core is not None: core.BNFreePlugin(self.handle) |
