Skip to content

Commit de3ce62

Browse files
committed
Clarify pyminify help text
1 parent 5113cb0 commit de3ce62

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/python_minifier/__main__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,25 +172,25 @@ def parse_args():
172172
minification_options.add_argument(
173173
'--no-preserve-shebang',
174174
action='store_false',
175-
help='Preserve any shebang line from the source',
175+
help='Disable preserving any shebang line from the source',
176176
dest='preserve_shebang',
177177
)
178178
minification_options.add_argument(
179179
'--remove-asserts',
180180
action='store_true',
181-
help='Remove assert statements',
181+
help='Enable removing assert statements',
182182
dest='remove_asserts',
183183
)
184184
minification_options.add_argument(
185185
'--remove-debug',
186186
action='store_true',
187-
help='Remove conditional statements that test __debug__ is True',
187+
help='Enable removing conditional statements that test __debug__ is True',
188188
dest='remove_debug',
189189
)
190190
minification_options.add_argument(
191191
'--no-remove-explicit-return-none',
192192
action='store_false',
193-
help='Replace explicit return None with a bare return',
193+
help='Disable replacing explicit return None with a bare return',
194194
dest='remove_explicit_return_none',
195195
)
196196
minification_options.add_argument(

0 commit comments

Comments
 (0)