Add stubs for rfc3339-validator (#13688)

This commit is contained in:
Semyon Moroz
2025-03-21 17:18:20 +04:00
committed by GitHub
parent 693b66ae9a
commit b5edea6dd1
2 changed files with 12 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
version = "0.1.*"
upstream_repository = "https://github.com/naimetti/rfc3339-validator"
@@ -0,0 +1,10 @@
import re
from typing import Final
__version__: Final[str]
__author__: Final[str]
__email__: Final[str]
RFC3339_REGEX_FLAGS: Final[int]
RFC3339_REGEX: Final[re.Pattern[str]]
def validate_rfc3339(date_string: str) -> bool: ...