diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 62b0716c..9fcd0779 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,7 @@ ci: autoupdate_schedule: monthly repos: - repo: https://github.com/asottile/pyupgrade - rev: v3.7.0 + rev: v3.8.0 hooks: - id: pyupgrade args: ["--py38-plus"] diff --git a/docs/errorhandling.rst b/docs/errorhandling.rst index c281055f..faca58c2 100644 --- a/docs/errorhandling.rst +++ b/docs/errorhandling.rst @@ -231,7 +231,7 @@ responses, you could also pass them through directly. Error handlers still respect the exception class hierarchy. If you register handlers for both ``HTTPException`` and ``Exception``, the ``Exception`` handler will not handle ``HTTPException`` subclasses -because it the ``HTTPException`` handler is more specific. +because the ``HTTPException`` handler is more specific. Unhandled Exceptions diff --git a/docs/tutorial/install.rst b/docs/tutorial/install.rst index 519b0678..db83e106 100644 --- a/docs/tutorial/install.rst +++ b/docs/tutorial/install.rst @@ -35,6 +35,7 @@ The ``pyproject.toml`` file describes your project and how to build it. [project] name = "flaskr" version = "1.0.0" + description = "The basic blog app built in the Flask tutorial." dependencies = [ "flask", ]