You currently have to use an equals sign when passing in a named argument:
python main.py my_command --desc="some message"
This can lead to confusion when people omit it, using this format instead:
python main.py my_command --desc "some message"
It would be good to support both formats.
Originally reported here: piccolo-orm/piccolo#418