Skip to content

Commit

Permalink
Update spacy_stanza.md (#1325)
Browse files Browse the repository at this point in the history
Added bugfix from #1298
  • Loading branch information
AndreasThinks authored Mar 7, 2024
1 parent d71c5fb commit 1911a3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/analyzer/nlp_engines/spacy_stanza.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ import spacy
# Create a class inheriting from SpacyNlpEngine
class LoadedSpacyNlpEngine(SpacyNlpEngine):
def __init__(self, loaded_spacy_model):
super.__init__()
super().__init__()
self.nlp = {"en": loaded_spacy_model}
# Load a model a-priori
Expand Down

0 comments on commit 1911a3d

Please sign in to comment.