Skip to content

Commit

Permalink
Fix missing comma in SUMMARY_KEYS everest
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj committed Jan 13, 2025
1 parent 718fd50 commit ef7daed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/everest/simulator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
JOB_FAILURE = "Failed"


DEFAULT_DATA_SUMMARY_KEYS = ("YEAR", "YEARSTCPU", "TCPUDAY", "MONTH", "DAY")
DEFAULT_DATA_SUMMARY_KEYS = ("YEAR", "YEARS", "TCPU", "TCPUDAY", "MONTH", "DAY")


DEFAULT_FIELD_SUMMARY_KEYS = (
Expand Down
3 changes: 2 additions & 1 deletion tests/everest/test_egg_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
NUM_REALIZATIONS = 3 # tied to the specified config.yml defined in CONFIG_FILE
SUM_KEYS_NO_OPM = [
"YEAR",
"YEARSTCPU",
"YEARS",
"TCPU",
"TCPUDAY",
"MONTH",
"DAY",
Expand Down

0 comments on commit ef7daed

Please sign in to comment.