| 11 | one = Fraction(1) |
| 12 | |
| 13 | class TestWidget(Widget): |
| 14 | def get_content_width(self, container: Size, parent: Size) -> int: |
| 15 | assert False, "must not be called" |
| 16 | |
| 17 | def get_content_height(self, container: Size, parent: Size) -> int: |
| 18 | assert False, "must not be called" |
| 19 | |
| 20 | widget = TestWidget() |
| 21 |
no outgoing calls
searching dependent graphs…