(info, key)
| 283 | |
| 284 | |
| 285 | def _check_is_str(info, key): |
| 286 | if not isinstance(info, str): |
| 287 | raise TypeError(f'Invalid type for {key} metadata. Expected str, not ' |
| 288 | f'{type(info)}.') |
| 289 | |
| 290 | |
| 291 | def _check_is_iterable_of_str(infos, key): |
no outgoing calls
no test coverage detected
searching dependent graphs…