diff --git a/src/spiffworkflow_proxy/plugin_service.py b/src/spiffworkflow_proxy/plugin_service.py index 3efe0fa..9ce70b0 100644 --- a/src/spiffworkflow_proxy/plugin_service.py +++ b/src/spiffworkflow_proxy/plugin_service.py @@ -172,4 +172,7 @@ def describe_target(plugin_name: str, target_name: str, target: type) -> dict: @staticmethod def is_connector_command(module: Any) -> bool: - return inspect.isclass(module) and issubclass(module, ConnectorCommand) + # TODO: once all known connectors are updated to use spiffworkflow-connector-command + # we should use this line to determine if something is a value command or not + # return inspect.isclass(module) and issubclass(module, ConnectorCommand) + return inspect.isclass(module)