TypeError: verify() takes 2 positional arguments but 685 were given
时间: 2023-10-31 07:23:41 浏览: 145
This error message likely means that you are passing too many arguments to a function called "verify". The function is designed to take two arguments, but you are passing it 685 arguments.
To fix the error, you will need to review the code that calls the "verify" function and make sure that you are only passing in the correct number of arguments. If you are unsure where the error is occurring, you can use print statements or a debugger to help you identify the issue.
阅读全文