def force_option_clean(f): return click.option( '--force', '-f', default=True, type=click.BOOL, is_flag=True, help='Force the removal of a running container (uses SIGKILL)' )(f)