summaryrefslogtreecommitdiff
path: root/python/pluginmanager.py
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2024-05-22 10:32:34 -0400
committerKyleMiles <krm504@nyu.edu>2024-06-14 15:26:02 -0400
commit2f3dc44b366272d1cee5e6e1609598625de9d400 (patch)
tree1096077fe1fcaf1c4cc3a966b606c4f67e355cd7 /python/pluginmanager.py
parent43db135f0d5cd43e2c86d63e60886565167782c2 (diff)
Plugin mananger : Remove license name field
Diffstat (limited to 'python/pluginmanager.py')
-rw-r--r--python/pluginmanager.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/python/pluginmanager.py b/python/pluginmanager.py
index 489cb7f7..07b3e43e 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -131,11 +131,6 @@ class RepoPlugin:
return core.BNPluginGetDescription(self.handle)
@property
- def license(self) -> Optional[str]:
- """String short license description (ie MIT, BSD, GPLv2, etc)"""
- return core.BNPluginGetLicense(self.handle)
-
- @property
def license_text(self) -> Optional[str]:
"""String complete license text for the given plugin"""
return core.BNPluginGetLicenseText(self.handle)