Skip to content

Commit

Permalink
注释打印,防止超长
Browse files Browse the repository at this point in the history
  • Loading branch information
Iuleoo committed Jan 31, 2024
1 parent 33b20f8 commit 6e290b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/login.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def login(phone, passwd, encrypted_token):
}
response = requests.post(url, data=json.dumps(data), headers=headers)
# 打印返回个人信息
print(response.json())
# print(response.json())
return response.json()

# 验证码验证函数
Expand Down Expand Up @@ -68,7 +68,7 @@ def checkVerification(encryptedVerification, tokenCoordinateByte):
}
response = requests.post(url, data=json.dumps(data), headers=headers)
# 打印返回 第一条JSON
print(response.json())
# print(response.json())
return response.json()

# 获取验证码函数
Expand Down

0 comments on commit 6e290b8

Please sign in to comment.