Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
Dunno why the pre-commit hook didn't catch this
  • Loading branch information
esheehan-gsl committed Oct 31, 2023
1 parent 49f05b8 commit 758751f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/unified_graphics/diag.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def history(
) -> pd.DataFrame:
parquet_file = os.path.join(
parquet_path,
'_'.join((model, background, system, domain, frequency)),
"_".join((model, background, system, domain, frequency)),
variable.value,
)

Expand Down
8 changes: 4 additions & 4 deletions tests/test_diag.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,9 +346,9 @@ def test_history(tmp_path, test_dataset, diag_parquet):
"min": [5.0, -8.0],
"max": [10.0, 0.0],
"mean": [7.5, -4.0],
"count": [2.0, 3.0]
"count": [2.0, 3.0],
}
)
),
)


Expand Down Expand Up @@ -425,7 +425,7 @@ def test_history_s3(aws_credentials, moto_server, s3_client, test_dataset, monke
"min": [5.0, -8.0],
"max": [10.0, 0.0],
"mean": [7.5, -4.0],
"count": [2.0, 3.0]
"count": [2.0, 3.0],
}
)
),
)

0 comments on commit 758751f

Please sign in to comment.