(value: Any)
| 74 | |
| 75 | |
| 76 | def value_is_sequence(value: Any) -> bool: |
| 77 | return isinstance(value, sequence_types) and not isinstance(value, (str, bytes)) |
| 78 | |
| 79 | |
| 80 | def _annotation_is_complex(annotation: type[Any] | None) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…