FixNameFile
Some checks failed
K8S Fission Deployment / Deployment fission functions (push) Failing after 21s

This commit is contained in:
QuangMinh_123
2025-12-10 09:57:16 +00:00
parent 085501b946
commit 24e4db954a
9 changed files with 205 additions and 124 deletions

View File

@@ -7,5 +7,5 @@ def validate_phone_number(phone_number: str) -> bool:
try:
parsed_number = phonenumbers.parse(phone_number) # Phân tích số điện thoại
return phonenumbers.is_valid_number(parsed_number) # Kiểm tra tính hợp lệ của số
except NumberParseException:
except phonenumbers.phonenumberutil.NumberParseException:
return False # Trả về False nếu số không hợp lệ