sphuber / aiida-shell

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

Escaped curly braces in `arguments` are not resolved #101

Closed sphuber closed 2 months ago

sphuber commented 2 months ago
In [1]: from aiida_shell import launch_shell_job

In [2]: results, node = launch_shell_job('echo', arguments="a{{d,c,b}}e")

In [3]: print(results['stdout'].get_content())
a{{d,c,b}}e