ACCESS-NRI / amami

Apache License 2.0
0 stars 0 forks source link

Refactor commands modules main functions to take separate input args #30

Open atteggiani opened 1 month ago

atteggiani commented 1 month ago

Expand args in main() functions of commands modules (um2nc, etc.) to help clarity & testing.

From

def main(args): 
  ...

to

def main(
  input,
  output,
  <other_argument>,
  ...,
): 
  ...