@@ -228,7 +228,7 @@ def _add_common_arguments(parser: argparse.ArgumentParser, binary_name: str) ->
228228 dest = "verbosity" ,
229229 action = "count" ,
230230 default = 0 ,
231- help = "each occurrence increases verbosity 1 level through " " ERROR-WARNING-INFO-DEBUG (default INFO)" ,
231+ help = "each occurrence increases verbosity 1 level through ERROR-WARNING-INFO-DEBUG (default INFO)" ,
232232 )
233233 parser .add_argument ("-l" , "--log" , dest = "log_fn" , default = None , help = "specify the log filename" )
234234 parser .add_argument (
@@ -288,22 +288,22 @@ def _validate_reader_writer_args(parser, args, use_polar2grid_defaults):
288288 parser .print_usage ()
289289 parser .exit (
290290 1 ,
291- "\n ERROR: Reader must be provided (-r flag).\n " "Supported readers:\n \t {}\n " .format (
291+ "\n ERROR: Reader must be provided (-r flag).\n Supported readers:\n \t {}\n " .format (
292292 "\n \t " .join (_supported_readers (use_polar2grid_defaults ))
293293 ),
294294 )
295295 elif len (args .readers ) > 1 :
296296 parser .print_usage ()
297297 parser .exit (
298298 1 ,
299- "\n Multiple readers is not currently supported. Got:\n \t " " {}\n " .format ("\n \t " .join (args .readers )),
299+ "\n Multiple readers is not currently supported. Got:\n \t {}\n " .format ("\n \t " .join (args .readers )),
300300 )
301301 return - 1
302302 if args .writers is None :
303303 parser .print_usage ()
304304 parser .exit (
305305 1 ,
306- "\n ERROR: Writer must be provided (-w flag) with one or more writer.\n " "Supported writers:\n \t {}\n " .format (
306+ "\n ERROR: Writer must be provided (-w flag) with one or more writer.\n Supported writers:\n \t {}\n " .format (
307307 "\n \t " .join (_supported_writers (use_polar2grid_defaults ))
308308 ),
309309 )
@@ -390,7 +390,7 @@ def add_scene_argument_groups(parser, is_polar2grid=False):
390390 dest = "readers" ,
391391 metavar = "READER" ,
392392 type = _convert_reader_name ,
393- help = "Name of reader used to read provided files. " " Supported readers: " + ", " .join (readers ),
393+ help = "Name of reader used to read provided files. Supported readers: " + ", " .join (readers ),
394394 )
395395 group_1 .add_argument (
396396 "-f" ,
@@ -502,7 +502,7 @@ def add_writer_argument_groups(parser, is_polar2grid=False):
502502 dest = "writers" ,
503503 type = _convert_writer_name ,
504504 metavar = "WRITER" ,
505- help = "Writer used to save datasets. " " Supported writers: " + ", " .join (writers ),
505+ help = "Writer used to save datasets. Supported writers: " + ", " .join (writers ),
506506 # help="Writers to save datasets with. Multiple writers "
507507 # "can be provided by specifying '-w' multiple "
508508 # "times (ex. '-w geotiff -w awips_tiled'). "
@@ -608,7 +608,7 @@ def add_resample_argument_groups(parser, is_polar2grid=None):
608608 "--grid-coverage" ,
609609 default = 0.1 ,
610610 type = float ,
611- help = "Fraction of target grid that must contain " " data to continue processing product." ,
611+ help = "Fraction of target grid that must contain data to continue processing product." ,
612612 )
613613 group_1 .add_argument (
614614 "--cache-dir" ,
@@ -620,9 +620,7 @@ def add_resample_argument_groups(parser, is_polar2grid=None):
620620 "--grid-configs" ,
621621 nargs = "+" ,
622622 default = tuple (),
623- help = "Specify additional grid configuration files. "
624- "(.conf for legacy CSV grids, .yaml for "
625- "SatPy-style areas)" ,
623+ help = "Specify additional grid configuration files. (.conf for legacy CSV grids, .yaml for SatPy-style areas)" ,
626624 )
627625 group_1 .add_argument (
628626 "--ll-bbox" ,
0 commit comments