Expand args in `main()` functions of commands modules (`um2nc`, etc.) to help clarity & testing. From ```py def main(args): ... ``` to ```py def main( input, output, <other_argument>, ..., ): ... ```
Expand args in
main()functions of commands modules (um2nc, etc.) to help clarity & testing.From
to