Plugin schema are now just plugin forms (requires eV 1.2)

This commit is contained in:
Joel Collins 2019-09-14 15:51:51 +01:00
parent 0d7a5f71e0
commit d9e07f913a
16 changed files with 106 additions and 98 deletions

View file

@ -132,7 +132,7 @@ class PluginMount(object):
def __init__(self, parent):
self.parent = parent
self.plugins = [] # List of plugin objects
self.schemas = [] # List of plugin schemas
self.forms = [] # List of plugin forms
logging.info("Creating plugin mount")
@property
@ -182,7 +182,7 @@ class PluginMount(object):
logging.info(ConColors.OKGREEN + "Plugin {} loaded as {}.".format(plugin_map, plugin_name) + ConColors.ENDC)
else:
logging.error("Error loading plugin. Moving on.")
logging.error(f"Error loading plugin {plugin_map}. Moving on.")
class MicroscopePlugin:
"""