Skip to content

Commit bfb2807

Browse files
update unused-ignore comment
1 parent ce4c78b commit bfb2807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

databind.core/src/databind/core/tests/schema_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ class B2(t.Generic[U]):
312312
)
313313
assert convert_dataclass_to_schema(B2) == Schema(
314314
{
315-
"a": Field(TypeHint(A[U])), # type: ignore[valid-type] # type: ignore[unused-ignore] # Type variable U is unbound # noqa: E501
315+
"a": Field(TypeHint(A[U])), # type: ignore[valid-type,unused-ignore] # Type variable U is unbound # noqa: E501
316316
"b": Field(TypeHint(str)),
317317
},
318318
B2,

0 commit comments

Comments
 (0)