Skip to content

Commit

Permalink
still 51 tests failures
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed Sep 30, 2024
1 parent 3d0c49a commit 7d41963
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ def build(self) -> TREE:
freq: MatrixFrequency
for freq in MatrixFrequency:
for output_type in ["id", "values"]:
file_name = f"{output_type}-{freq}.txt"
file_name = f"{output_type}-{freq.value}.txt"
if (self.config.path / file_name).exists():
children[f"{output_type}-{freq}"] = AreaOutputSeriesMatrix(
children[f"{output_type}-{freq.value}"] = AreaOutputSeriesMatrix(
self.context,
self.config.next_file(file_name),
freq,
Expand Down

0 comments on commit 7d41963

Please sign in to comment.