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 1f23fd1 commit ce4c78bCopy full SHA for ce4c78b
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 variable U is unbound
+ "a": Field(TypeHint(A[U])), # type: ignore[valid-type] # type: ignore[unused-ignore] # Type variable U is unbound # noqa: E501
316
"b": Field(TypeHint(str)),
317
},
318
B2,
0 commit comments