Closed sayeghr closed 9 years ago
For example, I am using flask-basicauth and my arguments for all endpoints are:
Arguments: args kwargs auth password
Can you post the code you're using? When I do this:
@app.route('/user/<int:user_id>') @auto.doc() @basic_auth.required def user(user_id): return 'Hello, #%d!' % user_id
I see one argument just as I'd expect.
For example, I am using flask-basicauth and my arguments for all endpoints are:
Arguments: args kwargs auth password