I'd like to add a third string to the tuple. The first string would change from value to key, and the third string would become the value. This would allow alias-like parameters to simplify normally complex ones. A fine example are path strings.
"params": [
{
"name": "savepath",
"short": "s",
"long": "savepath",
"type": str,
"choices": (("one", "The first location", "C:/one/two/three"),
("two", "The second location", "D:/four/five/six")),
"default": "one",
"help": "Choose between one and two",
}
],
I'd like to add a third string to the tuple. The first string would change from value to key, and the third string would become the value. This would allow alias-like parameters to simplify normally complex ones. A fine example are path strings.