(self)
| 205 | ) |
| 206 | |
| 207 | def error_message(self) -> str: |
| 208 | return ( |
| 209 | f" Error might be related to new default (`{self._name}={self._new!r}`). " |
| 210 | f"Previously the default was `{self._name}={self._old!r}`. " |
| 211 | f"The recommendation is to set {self._name!r} explicitly for this case." |
| 212 | ) |
| 213 | |
| 214 | |
| 215 | _DATA_VARS_DEFAULT = CombineKwargDefault(name="data_vars", old="all", new=None) |
no outgoing calls
no test coverage detected