Merge pull request #11062 from explosion/autoblack

Auto-format code with black
This commit is contained in:
Paul O'Leary McCann 2022-07-03 14:35:53 +09:00 committed by GitHub
commit 7c1bf2fa1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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}"}]