Skip to content
Snippets Groups Projects
Unverified Commit ce2a58b5 authored by David Hoese's avatar David Hoese
Browse files

Fix argparse short argument for chunk size

parent 33e3bd4a
No related branches found
No related tags found
No related merge requests found
......@@ -467,7 +467,7 @@ def main():
argparser.add_argument('-i', '--interval', type=float,
help='Width of the interval to average input data over in minutes.' +
" If not specified, 1 is assumed. (Use 60 for one hour and 1440 for 1 day)")
argparser.add_argument('-cs', '--chunk-size', type=int, help='chunk Size for the netCDF file')
argparser.add_argument('--chunk-size', type=int, help='chunk size for the netCDF file')
argparser.add_argument('-z', '--zlib', action='store_true', help='compress netCDF file with zlib')
argparser.add_argument("input_files", nargs="+",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment