DmitrMakeev commited on
Commit
9c87528
·
verified ·
1 Parent(s): fbbb515

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1616,8 +1616,8 @@ def insert_data(data, verify_phone, add_curator):
1616
  curator = row.get('curator', '')
1617
 
1618
  if verify_phone == "1":
1619
- ws_st = verify_phone_number(phone)
1620
- if ws_st == "true":
1621
  ws_st = 1
1622
  else:
1623
  ws_st = 0
 
1616
  curator = row.get('curator', '')
1617
 
1618
  if verify_phone == "1":
1619
+ verification_result = verify_phone_number(phone)
1620
+ if verification_result == "true":
1621
  ws_st = 1
1622
  else:
1623
  ws_st = 0