@click.command()
@click.option('--shout/--no-shout', default=False)
def info(shout):
pass
info()
is ok, but
@click.command()
@click.option('--shout/--no-shout', default=False, type=bool)
def info(shout):
pass
info()
will raise a TypeError: Got secondary option for non boolean flag.
is ok, but
will raise a TypeError: Got secondary option for non boolean flag.