Skip to content

Commit 1273260

Browse files
committed
blacking tests
1 parent 8ab4f1c commit 1273260

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/test_input_output.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,16 @@ def test_load_delimited_nocomment():
6969
assert np.allclose(col2, [20, 50])
7070

7171

72-
@pytest.mark.parametrize("file_or_path", ["data/beat/ref01.txt",
73-
pathlib.Path("data/beat/ref01.txt")])
72+
@pytest.mark.parametrize(
73+
"file_or_path", ["data/beat/ref01.txt", pathlib.Path("data/beat/ref01.txt")]
74+
)
7475
def test_load_delimited_file_or_path(file_or_path):
7576
# Tests the load_delimited routine with either a string or a
76-
# pathlib.Path object as the first argument
77+
# pathlib.Path object as the first argument
7778
data = mir_eval.io.load_delimited(file_or_path, [float])
7879
assert len(data) == 635
7980

81+
8082
def test_load_events():
8183
# Test for a warning when invalid events are supplied
8284
with tempfile.TemporaryFile("r+") as f:

0 commit comments

Comments
 (0)