Skip to content

Commit

Permalink
Clarification to dry-run message
Browse files Browse the repository at this point in the history
  • Loading branch information
drdavella committed Dec 11, 2023
1 parent b87774b commit 151b475
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/pixee/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,12 @@ def fix(path, dry_run, language, output, list_codemods, explain, verbose):
)

console.print("Dry run:", dry_run, style="bold")
console.print(
"No changes will be written to disk"
if dry_run
else "Changes will be written to disk",
style="bold",
)

combined_codetf = {
"vendor": "pixee",
Expand Down

0 comments on commit 151b475

Please sign in to comment.