From 7e55a51314e6e59ee64e9802fd34bfdc692c1350 Mon Sep 17 00:00:00 2001 From: explosion-bot Date: Fri, 1 Jul 2022 08:04:32 +0000 Subject: [PATCH] Auto-format code with black --- spacy/tests/matcher/test_matcher_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spacy/tests/matcher/test_matcher_api.py b/spacy/tests/matcher/test_matcher_api.py index 2c2af6ce5..7c16da9f8 100644 --- a/spacy/tests/matcher/test_matcher_api.py +++ b/spacy/tests/matcher/test_matcher_api.py @@ -685,8 +685,8 @@ def test_matcher_ent_iob_key(en_vocab): def test_matcher_min_max_operator(en_vocab): # Exactly n matches {n} doc = Doc( - en_vocab, words=["foo", "bar", "foo", "foo", "bar", - "foo", "foo", "foo", "bar", "bar"] + en_vocab, + words=["foo", "bar", "foo", "foo", "bar", "foo", "foo", "foo", "bar", "bar"], ) matcher = Matcher(en_vocab) pattern = [{"ORTH": "foo", "OP": "{3}"}]