This repository was archived by the owner on May 30, 2022. It is now read-only.

Description
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:
- Generate a '--no-X' argument automatically to toggle the boolean. (opinionated decision)
- Give the user better control through the
@argument to define the behaviour (needs spec)