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 aaa02a4 commit c0f2063Copy full SHA for c0f2063
tests/test_mimetypes.py
@@ -25,7 +25,7 @@ def test_extensions_are_tuples_not_strings():
25
If it emits plain strings, this will fail.
26
"""
27
for mt in MimeType: # ty: ignore[not-iterable]
28
- assert isinstance(mt.extensions, tuple), f"{mt} .extensions should be tuple, got {type(mt.extensions)}"
+ assert isinstance(mt.extensions, tuple), f"{mt} .extensions should be tuple, got {type(mt.extensions)}" # ty: ignore[unresolved-attribute]
29
30
31
# -------------------------
0 commit comments