Skip to content

Commit ce4c78b

Browse files
try setting ignore[unused-ignore] for 3.6
1 parent 1f23fd1 commit ce4c78b

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 variable U is unbound
315+
"a": Field(TypeHint(A[U])), # type: ignore[valid-type] # type: ignore[unused-ignore] # Type variable U is unbound # noqa: E501
316316
"b": Field(TypeHint(str)),
317317
},
318318
B2,

0 commit comments

Comments
 (0)