| 48 | |
| 49 | @rich.repr.auto |
| 50 | class Bar(Foo): |
| 51 | def __rich_repr__(self): |
| 52 | yield (self.foo,) |
| 53 | yield None, self.foo, |
| 54 | yield "bar", self.bar, None |
| 55 | yield "egg", self.egg |
| 56 | |
| 57 | __rich_repr__.angular = True |
| 58 | |
| 59 | |
| 60 | class StupidClass: |
no outgoing calls