Skip to content

Commit c0f2063

Browse files
committed
fix ty config
1 parent aaa02a4 commit c0f2063

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_mimetypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_extensions_are_tuples_not_strings():
2525
If it emits plain strings, this will fail.
2626
"""
2727
for mt in MimeType: # ty: ignore[not-iterable]
28-
assert isinstance(mt.extensions, tuple), f"{mt} .extensions should be tuple, got {type(mt.extensions)}"
28+
assert isinstance(mt.extensions, tuple), f"{mt} .extensions should be tuple, got {type(mt.extensions)}" # ty: ignore[unresolved-attribute]
2929

3030

3131
# -------------------------

0 commit comments

Comments
 (0)