diff --git a/spacy/tests/pipeline/test_spancat.py b/spacy/tests/pipeline/test_spancat.py index 99128cfa6..c8c87f990 100644 --- a/spacy/tests/pipeline/test_spancat.py +++ b/spacy/tests/pipeline/test_spancat.py @@ -161,8 +161,8 @@ def test_make_spangroup_multilabel(max_positive, nr_results): @pytest.mark.parametrize( - "threshold,allow_overlap,nr_results", [ - (0.05, True, 3), (0.05, False, 1), (0.5, True, 2), (0.5, False, 1)] + "threshold,allow_overlap,nr_results", + [(0.05, True, 3), (0.05, False, 1), (0.5, True, 2), (0.5, False, 1)], ) def test_make_spangroup_singlelabel(threshold, allow_overlap, nr_results): fix_random_seed(0)