-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bring up to date #6
Conversation
neon_solvers/__init__.py
Outdated
LOG.info(f"loaded question solver plugin: {plug_name}") | ||
except Exception as e: | ||
LOG.exception(f"Failed to load question solver plugin: {plug_name}") | ||
config = self.config.get(plug) or {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be plug_name
, not plug
?
neon_solvers/__init__.py
Outdated
if not config.get("enabled", True): | ||
continue | ||
try: | ||
config = self.config.get(plug) or {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
config
already defined?
the plugin base class for question solvers was not in OPM this moves it here to follow the convention of other plugins now that is is a core part of persona includes NeonGeckoCom/neon_solvers#6
the plugin base class for question solvers was not in OPM this moves it here to follow the convention of other plugins now that is is a core part of persona includes NeonGeckoCom/neon_solvers#6
replaced by OpenVoiceOS/ovos-plugin-manager#140 |
nvm, the service should stay here, only base class moved, will update PR |
for integration with OpenVoiceOS/ovos-backend-client#28