(decode_cf, open_backend_dataset_parameters, **decoders)
| 83 | |
| 84 | |
| 85 | def _resolve_decoders_kwargs(decode_cf, open_backend_dataset_parameters, **decoders): |
| 86 | for d in list(decoders): |
| 87 | if decode_cf is False and d in open_backend_dataset_parameters: |
| 88 | decoders[d] = False |
| 89 | if decoders[d] is None: |
| 90 | decoders.pop(d) |
| 91 | return decoders |
| 92 | |
| 93 | |
| 94 | def _get_mtime(filename_or_obj): |
no outgoing calls
no test coverage detected
searching dependent graphs…