pull/10176/head
jiangweidong 2023-04-10 17:31:53 +08:00 committed by Jiangjie.Bai
parent 8ff1bae7e6
commit b7badc146a
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class PhoneValidator:
def __call__(self, value):
try:
phone = phonenumbers.parse(value)
phone = phonenumbers.parse(value, 'CN')
valid = phonenumbers.is_valid_number(phone)
except NumberParseException:
valid = False