Big Chungus
01/11/2023, 12:07 AM-h
)? I'm writing a cli that has an interpreter command which needs to propagate all args, but anything starting wit -h
(e.g. -hidon'treallywanthelp
) gets eaten up and produces illegal option error.
I'm aware of --
and it works, but I'm wondering if there's a way to somehow hack CliktCommand to avoid having that (this particular command is hidden and is reserved for internal use anyways).AJ Alt
01/19/2023, 5:55 PMhelpOptionNames = emptySet()
(https://ajalt.github.io/clikt/documenting/#help-option-customization) to get rid of the -h
option