(dtype)
| 892 | """ |
| 893 | |
| 894 | def get_dtype(dtype) -> dt.DType: |
| 895 | if isinstance(dtype, str): |
| 896 | dtype = locate(dtype) |
| 897 | if isinstance(dtype, dict): |
| 898 | dtype = dt.parse_dtype_from_dict(dtype) |
| 899 | return dt.wrap(dtype) |
| 900 | |
| 901 | def create_column_definition(entry): |
| 902 | if not isinstance(entry, dict): |
no test coverage detected