Skip to content

Commit d18ff0e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4497b58 commit d18ff0e

File tree

144 files changed

+192
-192
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+192
-192
lines changed

apps/frontend/src/content/docs/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ title: Strawberry docs
104104

105105
- [Deployment](/docs/operations/deployment)
106106
- [Testing](/docs/operations/testing)
107-
- [Tracing](/docs/operations/tracing)
107+
- [Tracing](/docs/operations/tracing)

apps/frontend/src/content/docs/_test.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ This is a warning. Something that you should be careful about.
123123
## Blockquote
124124

125125
> This is a quote
126-
>
126+
>
127127
128128

129129
```mermaid
@@ -136,4 +136,4 @@ sequenceDiagram
136136
137137
Bob-->Alice: Checking with John...
138138
Alice->John: Yes... John, how are you?
139-
```
139+
```

apps/frontend/src/content/docs/breaking-changes.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ title: List of breaking changes and deprecations
1313
- [Version 0.180.0 - 31 May 2023](/docs/breaking-changes/0.180.0)
1414
- [Version 0.169.0 - 5 April 2023](/docs/breaking-changes/0.169.0)
1515
- [Version 0.159.0 - 22 February 2023](/docs/breaking-changes/0.159.0)
16-
- [Version 0.146.0 - 5 December 2022](/docs/breaking-changes/0.146.0)
16+
- [Version 0.146.0 - 5 December 2022](/docs/breaking-changes/0.146.0)

apps/frontend/src/content/docs/breaking-changes/0.146.0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ The context value is now a dictionary instead of a custom class. This means that
6262
you should access the context value using the `["key"]` syntax instead of the
6363
`.key` syntax.
6464

65-
The `.key` syntax is still supported but will be removed in future releases.
65+
The `.key` syntax is still supported but will be removed in future releases.

apps/frontend/src/content/docs/breaking-changes/0.159.0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ See the following table for a mapping between the old and new hooks.
4444
| on_parsing_start | on_parse |
4545
| on_parsing_end | on_parse |
4646
| on_executing_start | on_execute |
47-
| on_executing_end | on_execute |
47+
| on_executing_end | on_execute |

apps/frontend/src/content/docs/breaking-changes/0.169.0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ If you're customizing this method you can change the signature to:
2929

3030
```python
3131
async def get_root_value(self, request: Request) -> Any: ...
32-
```
32+
```

apps/frontend/src/content/docs/breaking-changes/0.180.0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ for `info.context["ws"]`, `info.context["request"]` and
2020

2121
If you still want to use the `.key` syntax, you can override `get_context()` to
2222
return a custom dataclass there. See the Channels integration documentation for
23-
an example.
23+
an example.

apps/frontend/src/content/docs/breaking-changes/0.213.0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Here's an example of the changes:
2020

2121
-graphql_app = GraphQLRouter(schema, graphiql=False)
2222
+graphql_app = GraphQLRouter(schema, graphql_ide=None)
23-
```
23+
```

apps/frontend/src/content/docs/breaking-changes/0.217.0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ class Query:
2727
@strawberry.field(permission_classes=[IsAuthorized])
2828
def name(self, a_key: str) -> str: # pragma: no cover
2929
return "Erik"
30-
```
30+
```

apps/frontend/src/content/docs/breaking-changes/0.233.0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ class Product:
2626
original_info = info._raw_info
2727

2828
return Product(upc=upc)
29-
```
29+
```

0 commit comments

Comments
 (0)