Skip to content

Commit

Permalink
feat(cli): Change duplicate cli simulate function names. (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
saeranv authored Oct 30, 2020
1 parent 6ff8e44 commit bc01681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions uwg/cli/simulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def simulate():
'of the morphed .epw file. The argument passed here will overwrite the '
'new_epw_name specified in the UWG JSON model file.',
default=None, show_default=True)
def simulate_model(model_json, epw_path, new_epw_dir, new_epw_name):
def simulate_json_model(model_json, epw_path, new_epw_dir, new_epw_name):
"""Simulate a UWG model from a JSON model file.
\n
Args:\n
Expand Down Expand Up @@ -67,7 +67,7 @@ def simulate_model(model_json, epw_path, new_epw_dir, new_epw_name):
@click.option('--new-epw-name', help='Optional argumetn for The destination file name '
'of the morphed .epw file.',
default=None, show_default=True)
def simulate_model(param_uwg, epw_path, new_epw_dir, new_epw_name):
def simulate_uwg_param_model(param_uwg, epw_path, new_epw_dir, new_epw_name):
"""Simulate a UWG model from a .uwg parameter file.
\n
Args:\n
Expand Down

0 comments on commit bc01681

Please sign in to comment.