From 89b06c306d63faee22839bef340b4689a84c6117 Mon Sep 17 00:00:00 2001 From: Tetsuo Kiso Date: Sun, 1 Jan 2023 22:05:57 +0900 Subject: [PATCH] Delete unused freeze from StringStore --- spacy/strings.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/strings.pyx b/spacy/strings.pyx index c5f218342..a9768dfdf 100644 --- a/spacy/strings.pyx +++ b/spacy/strings.pyx @@ -112,7 +112,7 @@ cdef class StringStore: DOCS: https://spacy.io/api/stringstore """ - def __init__(self, strings=None, freeze=False): + def __init__(self, strings=None): """Create the StringStore. strings (iterable): A sequence of unicode strings to add to the store.