From 7d4e99425bcf36524a22f18db4fcfd552a068234 Mon Sep 17 00:00:00 2001 From: richardpaulhudson Date: Wed, 5 Oct 2022 19:30:10 +0200 Subject: [PATCH] Another temporary type:ignore --- spacy/ml/models/tok2vec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/ml/models/tok2vec.py b/spacy/ml/models/tok2vec.py index 3ee76b2d3..2a642e88b 100644 --- a/spacy/ml/models/tok2vec.py +++ b/spacy/ml/models/tok2vec.py @@ -274,7 +274,7 @@ def AffixMultiHashEmbed( ) embeddings = [ # type:ignore - HashEmbed(width, row, column=i, seed=i + 7, dropout=0.0) + HashEmbed(width, row, column=i, seed=i + 7, dropout=0.0) # type: ignore for i, row in enumerate(rows) ] concat_size = width * (len(embeddings) + include_static_vectors)