sphuber / aiida-shell

AiiDA plugin that makes running shell commands easy.
MIT License
14 stars 7 forks source link

`launch_shell_job` excepts when used with `submit=True` inside a workflow #37

Closed sphuber closed 1 year ago

sphuber commented 1 year ago

When submit=True the job is submitted to the daemon using aiida.engine.launch.submit. However, when this is executed within the context of a workchain, this raises an error as WorkChain.submit should be used in this case instead of the global function.