From 5134892927745af047437b1698669da083c2bde4 Mon Sep 17 00:00:00 2001 From: Ian Thompson Date: Thu, 13 Jul 2023 11:53:13 -0500 Subject: [PATCH] modified: spacy/language.py - removed noqa comment --- spacy/language.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/language.py b/spacy/language.py index 2c120c502..3b3e33991 100644 --- a/spacy/language.py +++ b/spacy/language.py @@ -1825,7 +1825,7 @@ class Language: # Later we replace the component config with the raw config again. interpolated = filled.interpolate() if not filled.is_interpolated else filled pipeline = interpolated.get("components", {}) - sourced = util.get_sourced_components(interpolated) # noqa: F841 + sourced = util.get_sourced_components(interpolated) # If components are loaded from a source (existing models), we cache # them here so they're only loaded once source_nlps = {}