chore: collapse multi-line argument definitions into single lines across multiple modules
This commit is contained in:
@@ -52,13 +52,9 @@ class PluginLoader:
|
||||
self.loaded_plugins[plugin_name] = module
|
||||
logger.info(f"Loaded plugin: {plugin_name} ({len(tools)} tools)")
|
||||
else:
|
||||
logger.warning(
|
||||
f"Plugin {plugin_name} register_tools() did not return a list"
|
||||
)
|
||||
logger.warning(f"Plugin {plugin_name} register_tools() did not return a list")
|
||||
else:
|
||||
logger.warning(
|
||||
f"Plugin {plugin_name} does not have register_tools() function"
|
||||
)
|
||||
logger.warning(f"Plugin {plugin_name} does not have register_tools() function")
|
||||
|
||||
def get_plugin_function(self, tool_name: str) -> Callable:
|
||||
for plugin_name, module in self.loaded_plugins.items():
|
||||
|
||||
Reference in New Issue
Block a user