File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments