We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The code sample gives the assert view_func is not None, "expected view func if endpoint is not provided.".
view_func is not None, "expected view func if endpoint is not provided."
Documentation in question: https://flask.palletsprojects.com/en/stable/patterns/favicon/
Sample code in question:
app.add_url_rule('/favicon.ico', redirect_to=url_for('static', filename='favicon.ico'))
The text was updated successfully, but these errors were encountered:
Issue is resolved by adding an endpoint parameter to the add_url_rule call.
Perhaps the documentation needs to be updated. Or there is something else wrong with my test case.
Sorry, something went wrong.
No branches or pull requests
The code sample gives the assert
view_func is not None, "expected view func if endpoint is not provided."
.Documentation in question: https://flask.palletsprojects.com/en/stable/patterns/favicon/
Sample code in question:
The text was updated successfully, but these errors were encountered: