Closed Sodki closed 6 years ago
list_human is defined as a boolean, but then the test has this:
elif args.list_human is not None:
This is always true since False is not None.
False
None
Thanks @Sodki for pointing this out!!! After careful review I realized --list-human was ill-conceived: it should always have been a flag to --list/--list-bundles, not a command by itself.
--list-human
--list/--list-bundles
list_human is defined as a boolean, but then the test has this:
This is always true since
False
is notNone
.