| 790 | self.foo = Foo(parent=self) |
| 791 | |
| 792 | class TestApp(Application): |
| 793 | name = "test" |
| 794 | |
| 795 | aliases = {"val": "Bar.Foo.val"} |
| 796 | classes = [Foo, Bar] |
| 797 | |
| 798 | def initialize(self, *args, **kwargs): |
| 799 | super().initialize(*args, **kwargs) |
| 800 | self.bar = Bar(parent=self) |
| 801 | |
| 802 | app = TestApp() |
| 803 | app.initialize(["--val=10"]) |
no outgoing calls
searching dependent graphs…