Skip to content

Commit

Permalink
default value for phrasematcher in pyi (#12714)
Browse files Browse the repository at this point in the history
  • Loading branch information
svlandeg committed Jun 21, 2023
1 parent 93983f0 commit d3ac8e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spacy/matcher/phrasematcher.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ from .matcher import Matcher

class PhraseMatcher:
def __init__(
self, vocab: Vocab, attr: Optional[Union[int, str]], validate: bool = ...
self, vocab: Vocab, attr: Optional[Union[int, str]] = ..., validate: bool = ...
) -> None: ...
def __reduce__(self) -> Any: ...
def __len__(self) -> int: ...
Expand Down

0 comments on commit d3ac8e8

Please sign in to comment.