When using accept
, the values from the config are not routed through the type conversions
#326
Labels
accept
, the values from the config are not routed through the type conversions
#326
Because GLI is using
OptionParser
(from the stdlib) to do type conversions, they only happen when arguments are parsed from the command line. When arguments are parsed from the config file, they will not be type-checked.This is a bug, but also points to the sorta bad design of the configuration system.
The following test shows the bug (copied from #190):
The text was updated successfully, but these errors were encountered: