We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce4c78b commit bfb2807Copy full SHA for bfb2807
databind.core/src/databind/core/tests/schema_test.py
@@ -312,7 +312,7 @@ class B2(t.Generic[U]):
312
)
313
assert convert_dataclass_to_schema(B2) == Schema(
314
{
315
- "a": Field(TypeHint(A[U])), # type: ignore[valid-type] # type: ignore[unused-ignore] # Type variable U is unbound # noqa: E501
+ "a": Field(TypeHint(A[U])), # type: ignore[valid-type,unused-ignore] # Type variable U is unbound # noqa: E501
316
"b": Field(TypeHint(str)),
317
},
318
B2,
0 commit comments