Skip to content

Commit

Permalink
Merge pull request #2 from Baseline-quebec/fix-sequence-error
Browse files Browse the repository at this point in the history
Update _models_py3.py
  • Loading branch information
GameSetAndMatch authored Oct 28, 2024
2 parents 558336a + 2525a12 commit bc567fa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6385,7 +6385,7 @@ def __init__(
*,
name: str,
lower_case_terms: bool = True,
pattern: str = "\W+",
pattern: str = r"\W+",
flags: Optional[Union[str, "_models.RegexFlags"]] = None,
stopwords: Optional[List[str]] = None,
**kwargs: Any
Expand Down Expand Up @@ -6610,7 +6610,7 @@ def __init__(
self,
*,
name: str,
pattern: str = "\W+",
pattern: str = r"\W+",
flags: Optional[Union[str, "_models.RegexFlags"]] = None,
group: int = -1,
**kwargs: Any
Expand Down

0 comments on commit bc567fa

Please sign in to comment.