style(TextHandler): fix re overload

This commit is contained in:
Karim shoair
2025-01-31 00:48:27 +02:00
parent 1962c11f64
commit 3f23f18473
+1 -1
View File
@@ -131,10 +131,10 @@ class TextHandler(str):
def re(
self,
regex: Union[str, Pattern[str]],
check_match: Literal[True],
replace_entities: bool = True,
clean_match: bool = False,
case_sensitive: bool = False,
check_match: Literal[True] = True,
) -> bool:
...