Skip to content

Commit

Permalink
pre-commit reformatted
Browse files Browse the repository at this point in the history
  • Loading branch information
liuly12 committed Aug 1, 2024
1 parent 221907c commit 4fc62df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,9 @@ def test_node_overrides(self):
node.apply_overrides({"data_input_dict": new_data_input_dict})
self.assertDictEqual(node.data_input_dict, new_data_input_dict)
# check the format of str
new_data_input_dict = str(Path(__file__).parent / "example_data_input_dict.csv.gz")
new_data_input_dict = str(
Path(__file__).parent / "example_data_input_dict.csv.gz"
)
node.apply_overrides({"data_input_dict": new_data_input_dict})
from wsimod.orchestration.model import read_csv

Expand Down

0 comments on commit 4fc62df

Please sign in to comment.