denialofsandwich
denialofsandwich
I got it working. In line 20, you pass the command arguments as a string, but it requires an array (An element for each parameter). This fixed it for me:...
Yes. I tried using shlex. But it treats pipes and redirection-operators as regular parameters. I'm currently using the "run" hotkey_type to send a signal so my python-script, which does further...
I found another few examples. Here with a `dict[str, list[union]]` type: ```python from dataclasses import dataclass, field from typing import Union from omegaconf import OmegaConf @dataclass # Default is z.a.b...