From 29f50d255f86b50f9c3f5e76b80de968c0f745ea Mon Sep 17 00:00:00 2001 From: Dhruv Manilawala Date: Sat, 21 May 2022 19:55:27 +0530 Subject: [PATCH] docs: update verbose output --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 300af8c..0dbf02a 100644 --- a/README.md +++ b/README.md @@ -68,10 +68,11 @@ the source files using both `--dry-run` and `--verbose` flags like so: ```console $ remove-print-statements --dry-run --verbose test.py -test.py:7:0: print("module") -test.py:18:8: print("property") -test.py:27:4: print("method") -test.py:29:8: print("for loop") +test.py + 7 print("module") + 18 print("property") + 27 print("method") + 29 print("for loop") 1 file would be transformed, 4 print statements would be removed ```