From 89fa6e3b285f2f83ff0e5d1c5b9907b1f4c33410 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Fri, 26 Mar 2021 16:03:51 -0400 Subject: updating to latest sphinx-rtd theme and many doc formatting fixes --- python/pluginmanager.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'python/pluginmanager.py') 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) -- cgit v1.3.1