summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2024-05-29 09:08:51 -0400
committerKyleMiles <krm504@nyu.edu>2024-06-14 15:26:02 -0400
commit13122c55c87302fddee581add0642b5c4bd1a438 (patch)
tree05ad02e1dc76215c9343c252ffa1f369238312a9 /python
parent2f3dc44b366272d1cee5e6e1609598625de9d400 (diff)
Plugin Manager : Remove install instructions
Diffstat (limited to 'python')
-rw-r--r--python/pluginmanager.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/python/pluginmanager.py b/python/pluginmanager.py
index 07b3e43e..d7474440 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -191,16 +191,6 @@ class RepoPlugin:
"""String version of the plugin"""
return core.BNPluginGetVersion(self.handle)
- def install_instructions(self, platform: str) -> Optional[str]:
- """
- Installation instructions for the given platform
-
- :param str platform: One of the valid platforms "Windows", "Linux", "Darwin"
- :return: String of the installation instructions for the provided platform
- :rtype: str
- """
- return core.BNPluginGetInstallInstructions(self.handle, platform)
-
@property
def install_platforms(self) -> List[str]:
"""List of platforms this plugin can execute on"""