()
| 97 | |
| 98 | |
| 99 | def test_is_uploadfile_sequence_annotation(): |
| 100 | # For coverage |
| 101 | # TODO: in theory this would allow declaring types that could be lists of UploadFile |
| 102 | # and other types, but I'm not even sure it's a good idea to support it as a first |
| 103 | # class "feature" |
| 104 | assert is_uploadfile_sequence_annotation(list[str] | list[UploadFile]) |
| 105 | |
| 106 | |
| 107 | def test_serialize_sequence_value_with_optional_list(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…