We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51b5263 commit 113cbc6Copy full SHA for 113cbc6
1 file changed
python/pluginmanager.py
@@ -284,6 +284,12 @@ def last_update(self) -> date:
284
return datetime.fromtimestamp(core.BNPluginGetLastUpdate(self.handle))
285
286
287
+@deprecation.deprecated(deprecated_in="5.3", details='Use :py:class:`binaryninja.Extension` instead.')
288
+class RepoPlugin(Extension):
289
+ def __init__(self, handle: 'core.BNRepoPluginHandle'):
290
+ super().__init__(handle)
291
+
292
293
class Repository:
294
"""
295
``Repository`` is a read-only class. Use RepositoryManager to Enable/Disable/Install/Uninstall plugins.
0 commit comments