From d72534a9e3775fccdb00777116f775d6bf7a185e Mon Sep 17 00:00:00 2001 From: Tomperez98 Date: Tue, 24 Oct 2023 17:48:45 -0500 Subject: [PATCH] No fix by default --- pyproject.toml | 2 +- pyrgo/cli/cmds/check.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0948642..6b3c4eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pyrgo" -version = "1.1.2" +version = "1.1.3" readme = "README.md" requires-python = ">=3.9" classifiers = [ diff --git a/pyrgo/cli/cmds/check.py b/pyrgo/cli/cmds/check.py index 85a121c..080c6b8 100644 --- a/pyrgo/cli/cmds/check.py +++ b/pyrgo/cli/cmds/check.py @@ -38,7 +38,7 @@ @click.option( "--fix/--no-fix", "fix", - default=True, + default=False, show_default=True, type=click.BOOL, )