Skip to content

Commit

Permalink
Bug fix: add missing comma at line 911 of run_benchmark.py
Browse files Browse the repository at this point in the history
benchmark/run_benchmark.py
- The "is_gchp=True" keyword argument needs to be followed by a comma
  (e.g. "is_gchp=True," as there are arguments that come after it.
  Now fixed.

Signed-off-by: Bob Yantosca <[email protected]>
  • Loading branch information
yantosca authored and lizziel committed May 31, 2023
1 parent 7a58957 commit 48fed1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/run_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ def run_benchmark_default(config):
gchp_vs_gcc_devrst,
"Restart",
gchp_end_dev_date,
is_gchp=True
is_gchp=True,
gchp_res=config["data"]["dev"]["gchp"]["resolution"],
gchp_is_pre_14_0=config["data"]["dev"]["gchp"]["is_pre_14.0"]
)
Expand Down

0 comments on commit 48fed1c

Please sign in to comment.