Commit dff11fd
committed
Hotfix: Use proper list append in create_benchmark_sanity_check_table
gcpy/benchmark/modules/benchmark_funcs.py
- In function "create_benchmark_sanity_check_table", replace
skip_vars = [SKIP_THESE_VARS, "AREA"]
with
skip_vars = SKIP_THESE_VARS
skip_vars.append("AREA")
The former defines a list in which the 1st element is also a list,
which results in an error.
Signed-off-by: Bob Yantosca <yantosca@seas.harvard.edu>1 parent 6852c8a commit dff11fd
1 file changed
+3
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5885 | 5885 | | |
5886 | 5886 | | |
5887 | 5887 | | |
5888 | | - | |
5889 | | - | |
| 5888 | + | |
| 5889 | + | |
| 5890 | + | |
5890 | 5891 | | |
5891 | 5892 | | |
5892 | 5893 | | |
| |||
0 commit comments