(x)
| 70 | """ |
| 71 | indent = functools.partial(textwrap.indent, prefix=" " * 4) |
| 72 | def strrepr(x): return repr(x) if isinstance(x, str) else str(x) |
| 73 | return lambda self: ( |
| 74 | type(self).__name__ + "(" |
| 75 | + ",".join([*(indent("\n" + strrepr(getattr(self, arg))) |
no outgoing calls
no test coverage detected
searching dependent graphs…