Convert `bool` arguments to `int`
The `argparse` library treats boolean arguments as integers. Specifically, each time a boolean argument is meet the associated variable is incremented. This led to weird behaviors having `2` being converted to `false`. Using `int` as a type solves this issue.
Please register or sign in to comment