You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the current implementation of the Config class, any argument whos default value is True in the config file and which has the action=store_true property is useless from the command line.
If not provided at the command line, it will be True. If provided, it will be True. Therefore there needs to be a better way of harmonizing these arguments with boolean values.
The text was updated successfully, but these errors were encountered:
Due to the current implementation of the
Config
class, any argument whos default value isTrue
in the config file and which has theaction=store_true
property is useless from the command line.If not provided at the command line, it will be
True
. If provided, it will beTrue
. Therefore there needs to be a better way of harmonizing these arguments with boolean values.The text was updated successfully, but these errors were encountered: