Refactor for flake8 max line length (88) issue

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Aneesh Mandapati
2026-08-16 20:31:06 -04:00
committed by GitHub
co-authored by Copilot Autofix powered by AI
parent 893b6db3c3
commit 0b77e5fe94
+4 -1
View File
@@ -26,7 +26,10 @@ def force_spacy_available(monkeypatch):
def _fake_spacy(load):
return SimpleNamespace(load=load, util=SimpleNamespace(is_package=lambda _name: True))
return SimpleNamespace(
load=load,
util=SimpleNamespace(is_package=lambda _name: True),
)
def _nlp_mock(sentences=("Hello world.",)):