From 51d37033c8b2f280cfc0ddf2b1ecf0537f347532 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Wed, 12 Feb 2020 12:10:05 +0100 Subject: [PATCH] remove old comment --- spacy/tests/regression/test_issue4903.py | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/tests/regression/test_issue4903.py b/spacy/tests/regression/test_issue4903.py index 97293aec7..d09b32849 100644 --- a/spacy/tests/regression/test_issue4903.py +++ b/spacy/tests/regression/test_issue4903.py @@ -35,6 +35,5 @@ def test_issue4903(): nlp.add_pipe(custom_component, after="parser") text = ["I like bananas.", "Do you like them?", "No, I prefer wasabi."] - # works without 'n_process' for doc in nlp.pipe(text, n_process=2): print(doc)