From b98cba2befbdc6e8b426bf99f9c5d78d695fb63b Mon Sep 17 00:00:00 2001 From: kadarakos Date: Wed, 8 Feb 2023 19:45:01 +0000 Subject: [PATCH] black --- spacy/tests/pipeline/test_spancat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)