Skip to content

Commit

Permalink
Removing unnecessary keys call
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcdermott committed Sep 9, 2024
1 parent 2f564e6 commit 6f68a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_tabularize.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def test_tabularize(tmp_path):
f"Time-Series Data matrix Should have {expected_num_rows}" f" rows but has {ts_matrix.shape[0]}!"
)
output_files = list_subdir_files(str(output_dir.resolve()), "npz")
for split in split_json.keys():
for split in split_json:
for window in cfg.tabularization.window_sizes:
for agg in cfg.tabularization.aggs:
if agg.startswith("static"):
Expand Down

0 comments on commit 6f68a4b

Please sign in to comment.