We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b78fb0 commit 9995215Copy full SHA for 9995215
src/python_workflow_definition/aiida.py
@@ -100,7 +100,7 @@ def write_workflow_json(wg: WorkGraph, file_name: str) -> dict:
100
node_name_mapping[node.name] = i
101
102
executor = node.get_executor()
103
- callable_name = executor.callable_name
+ callable_name = f"{executor.module_path}.{executor.callable_name}"
104
105
data[NODES_LABEL].append({"id": i, "type": "function", "value": callable_name})
106
i += 1
0 commit comments