Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 28, 2024
1 parent b31f981 commit 8e4983f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()
)
```

0 comments on commit 8e4983f

Please sign in to comment.