From 261f0a2282b68c580b68633867271c39f1a3c076 Mon Sep 17 00:00:00 2001 From: Sean Deaton Date: Tue, 8 Nov 2022 17:05:56 -0500 Subject: Update ambiguous exception message. Add typing information. --- python/pluginmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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) -- cgit v1.3.1