| 27 | |
| 28 | |
| 29 | class _IncompatibleKeys(namedtuple('IncompatibleKeys', ['missing_keys', 'unexpected_keys'])): |
| 30 | def __repr__(self): |
| 31 | if not self.missing_keys and not self.unexpected_keys: |
| 32 | return '<All keys matched successfully>' |
| 33 | return super().__repr__() |
| 34 | |
| 35 | __str__ = __repr__ |
| 36 | |
| 37 | |
| 38 | def _addindent(s_, numSpaces): |
no outgoing calls
no test coverage detected
searching dependent graphs…