...and numbers
All checks were successful
Build & Publish to GHCR / build (push) Successful in 23s

This commit is contained in:
florian 2025-10-10 11:18:50 +02:00
parent f0792a3d21
commit e944acaedd

View File

@ -11,7 +11,7 @@ def is_valid_token(token: str) -> bool:
Validates the format ExponentPushToken[<22-letter-long-string>] Validates the format ExponentPushToken[<22-letter-long-string>]
""" """
pattern = r"^ExponentPushToken\[([A-Za-z]{22})\]$" pattern = r"^ExponentPushToken\[([A-Za-z0-9]{22})\]$"
if not re.match(pattern, token): if not re.match(pattern, token):
return False return False