()
| 89 | |
| 90 | |
| 91 | def test_is_bytes_sequence_annotation_union(): |
| 92 | # For coverage |
| 93 | # TODO: in theory this would allow declaring types that could be lists of bytes |
| 94 | # to be read from files and other types, but I'm not even sure it's a good idea |
| 95 | # to support it as a first class "feature" |
| 96 | assert is_bytes_sequence_annotation(list[str] | list[bytes]) |
| 97 | |
| 98 | |
| 99 | def test_is_uploadfile_sequence_annotation(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…