fix: 登录脚本2fa的错误值类型

This commit is contained in:
itouakirai
2025-07-19 03:30:15 +08:00
parent f176ab8035
commit ff0e58b717

View File

@@ -20,7 +20,7 @@ add_creator(WMCreator)
async def on_2fa(username: str, password: str):
two_step_code = input("2FA code: ")
return int(two_step_code)
return two_step_code
async def main():