From 8e4983fea0db071d329f9e1534ea2323494bdd80 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 21:05:55 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- RELEASE.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 888dfc7bf8..7442f730aa 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -8,16 +8,20 @@ For example, this should now work correctly: ```python # types.py + @strawberry.type -class Fruit: - ... +class Fruit: ... + FruitConnection: TypeAlias = ListConnection[Fruit] # schema.py + @strawberry.type class Query: - fruits: Annotated["FruitConnection", strawberry.lazy("types")] = strawberry.connection() + fruits: Annotated["FruitConnection", strawberry.lazy("types")] = ( + strawberry.connection() + ) ```