summaryrefslogtreecommitdiff
path: root/python/pluginmanager.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2021-03-26 16:03:51 -0400
committerJordan Wiens <jordan@psifertex.com>2021-03-26 16:03:51 -0400
commit89fa6e3b285f2f83ff0e5d1c5b9907b1f4c33410 (patch)
tree71945d3cf828c004b8b6b85878919448fd9df982 /python/pluginmanager.py
parent558ba0464a340514c7ba26b2f8ad458844ab92c3 (diff)
updating to latest sphinx-rtd theme and many doc formatting fixes
Diffstat (limited to 'python/pluginmanager.py')
-rw-r--r--python/pluginmanager.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/pluginmanager.py b/python/pluginmanager.py
index 109876e3..1a3187af 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -93,16 +93,16 @@ class RepoPlugin(object):
def enable(self, force=False):
"""
- Enable this plugin, optionally trying to force it.
- Force loading a plugin with ignore platform and api constraints.
- (e.g. The plugin author says the plugin will only work on Linux-python3 but you'd like to
+ Enable this plugin, optionally trying to force it. \
+ Force loading a plugin with ignore platform and api constraints. \
+ (e.g. The plugin author says the plugin will only work on Linux-python3 but you'd like to \
attempt to load it on Macos-python2)
"""
return core.BNPluginEnable(self.handle, force)
@property
def api(self):
- """string indicating the API used by the plugin"""
+ """String indicating the API used by the plugin"""
result = []
count = ctypes.c_ulonglong(0)
platforms = core.BNPluginGetApis(self.handle, count)