summaryrefslogtreecommitdiff
path: root/python/pluginmanager.py
diff options
context:
space:
mode:
authorSean Deaton <sean.deaton@me.com>2022-11-08 17:05:56 -0500
committerPeter LaFosse <peter@vector35.com>2022-11-10 16:20:26 -0500
commit261f0a2282b68c580b68633867271c39f1a3c076 (patch)
treecff4652e7baa0b2205b585b7ee9dbd53f75b856f /python/pluginmanager.py
parent216df2539af063b8eb264945a546a37665d95ce5 (diff)
Update ambiguous exception message.
Add typing information.
Diffstat (limited to 'python/pluginmanager.py')
-rw-r--r--python/pluginmanager.py2
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)