In argparse, we only generate an argument for the boolean to set to _true_ but there is no way for the user to explicitly switch it off (pass False). Our options: 1. Generate a '--no-X' argument automatically to toggle the boolean. (opinionated decision) 2. Give the user better control through the `@argument` to define the behaviour (needs spec)
In argparse, we only generate an argument for the boolean to set to true but there is no way for the user to explicitly switch it off (pass False).
Our options:
@argumentto define the behaviour (needs spec)