File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,11 @@ def main():
26
26
parser .add_argument ('outfile' , nargs = '?' , type = argparse .FileType ('w' ),
27
27
help = 'write the output of infile to outfile' )
28
28
parser .add_argument ('--no-ensure-ascii' , action = 'store_true' , default = False ,
29
- help = 'Do not set ensure_ascii to escape non-ASCII characters' )
29
+ help = 'Do not escape non-ASCII characters in output. ' )
30
30
group = parser .add_mutually_exclusive_group ()
31
31
group .add_argument ('--indent' , default = 4 , type = int ,
32
- help = 'Indent level for pretty-printing.' )
32
+ help = 'Indent level (number of spaces) for '
33
+ 'pretty-printing. Defaults to 4.' )
33
34
group .add_argument ('--no-indent' , action = 'store_const' , dest = 'indent' ,
34
35
const = None , help = 'Use compact mode.' )
35
36
parser .add_argument ('--sort-keys' , action = 'store_true' , default = False ,
You can’t perform that action at this time.
0 commit comments