@@ -64,7 +64,7 @@ class FormattedPendingResult(TypedDict, total=False):
|
64 | 64 | label: str
|
65 | 65 |
|
66 | 66 |
|
67 |
| -class PendingResult: |
| 67 | +class PendingResult: # noqa: PLW1641 |
68 | 68 | """Pending execution result"""
|
69 | 69 |
|
70 | 70 | id: str
|
@@ -127,7 +127,7 @@ class FormattedCompletedResult(TypedDict, total=False):
|
127 | 127 | errors: list[GraphQLFormattedError]
|
128 | 128 |
|
129 | 129 |
|
130 |
| -class CompletedResult: |
| 130 | +class CompletedResult: # noqa: PLW1641 |
131 | 131 | """Completed execution result"""
|
132 | 132 |
|
133 | 133 | id: str
|
@@ -192,7 +192,7 @@ class FormattedExecutionResult(TypedDict, total=False):
|
192 | 192 | extensions: dict[str, Any]
|
193 | 193 |
|
194 | 194 |
|
195 |
| -class ExecutionResult: |
| 195 | +class ExecutionResult: # noqa: PLW1641 |
196 | 196 | """The result of GraphQL execution.
|
197 | 197 |
|
198 | 198 | - ``data`` is the result of a successful execution of the query.
|
@@ -267,7 +267,7 @@ class FormattedInitialIncrementalExecutionResult(TypedDict, total=False):
|
267 | 267 | extensions: dict[str, Any]
|
268 | 268 |
|
269 | 269 |
|
270 |
| -class InitialIncrementalExecutionResult: |
| 270 | +class InitialIncrementalExecutionResult: # noqa: PLW1641 |
271 | 271 | """Initial incremental execution result."""
|
272 | 272 |
|
273 | 273 | data: dict[str, Any] | None
|
@@ -369,7 +369,7 @@ class FormattedIncrementalDeferResult(TypedDict, total=False):
|
369 | 369 | extensions: dict[str, Any]
|
370 | 370 |
|
371 | 371 |
|
372 |
| -class IncrementalDeferResult: |
| 372 | +class IncrementalDeferResult: # noqa: PLW1641 |
373 | 373 | """Incremental deferred execution result"""
|
374 | 374 |
|
375 | 375 | data: dict[str, Any]
|
@@ -461,7 +461,7 @@ class FormattedIncrementalStreamResult(TypedDict, total=False):
|
461 | 461 | extensions: dict[str, Any]
|
462 | 462 |
|
463 | 463 |
|
464 |
| -class IncrementalStreamResult: |
| 464 | +class IncrementalStreamResult: # noqa: PLW1641 |
465 | 465 | """Incremental streamed execution result"""
|
466 | 466 |
|
467 | 467 | items: list[Any]
|
@@ -560,7 +560,7 @@ class FormattedSubsequentIncrementalExecutionResult(TypedDict, total=False):
|
560 | 560 | extensions: dict[str, Any]
|
561 | 561 |
|
562 | 562 |
|
563 |
| -class SubsequentIncrementalExecutionResult: |
| 563 | +class SubsequentIncrementalExecutionResult: # noqa: PLW1641 |
564 | 564 | """Subsequent incremental execution result."""
|
565 | 565 |
|
566 | 566 | __slots__ = "completed", "extensions", "has_next", "incremental", "pending"
|
|
0 commit comments