Skip to content

Commit 6fad8f8

Browse files
committed
Format temporal hypergraph tests with Black
1 parent 92da4a8 commit 6fad8f8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/core/temporal_hypergraphs/test_temporal_hypergraphs.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,9 @@ def test_remove_edges_mismatched_time_list_raises():
253253
h = TemporalHypergraph(weighted=False)
254254
h.add_edges([("A", "B"), ("B", "C")], [1, 2])
255255

256-
with pytest.raises(ValueError, match="Edge list and time list must have the same length"):
256+
with pytest.raises(
257+
ValueError, match="Edge list and time list must have the same length"
258+
):
257259
h.remove_edges([("A", "B"), ("B", "C")], [1])
258260

259261

0 commit comments

Comments
 (0)