Skip to content

Commit

Permalink
Update help text for --dry-run argument in the parser
Browse files Browse the repository at this point in the history
Signed-off-by: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com>
  • Loading branch information
thombashi committed Dec 30, 2024
1 parent 8684baa commit 9c5d9b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cleanpy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ def parse_option() -> Namespace:
parser.add_argument(
"--follow-symlinks", action="store_true", default=False, help="follow symlinks."
)
parser.add_argument("--dry-run", action="store_true", default=False, help="do no harm.")
parser.add_argument(
"--dry-run", action="store_true", default=False, help="don't actually do anything."
)

group_rm = parser.add_argument_group("Remove Target")
group_rm.add_argument(
Expand Down

0 comments on commit 9c5d9b1

Please sign in to comment.