From aea13d5a100b03758fecb88a34daeab4f8aa8426 Mon Sep 17 00:00:00 2001 From: ToolMoney <119289623+ToolMoney@users.noreply.github.com> Date: Thu, 29 Jun 2023 17:20:35 -0700 Subject: [PATCH 1/3] fix typo in errorhandling doc --- docs/errorhandling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 11da927fd993c941618a67b443cc0649402f4de0 Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Sat, 1 Jul 2023 07:09:51 -0700 Subject: [PATCH 2/3] Update install.rst with required description --- docs/tutorial/install.rst | 1 + 1 file changed, 1 insertion(+) 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", ] From 65bc7636348a9ca32ccafb9f685ab4377e1e446d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 4 Jul 2023 06:36:29 +0000 Subject: [PATCH 3/3] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/asottile/pyupgrade: v3.7.0 → v3.8.0](https://github.com/asottile/pyupgrade/compare/v3.7.0...v3.8.0) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]