Error class for merge failures due to incompatible arguments.
| 97 | |
| 98 | |
| 99 | class MergeError(ValueError): |
| 100 | """Error class for merge failures due to incompatible arguments.""" |
| 101 | |
| 102 | # inherits from ValueError for backward compatibility |
| 103 | # TODO: move this to an xarray.exceptions module? |
| 104 | |
| 105 | |
| 106 | def unique_variable( |
no outgoing calls
no test coverage detected
searching dependent graphs…