(self, **kwargs)
| 81 | self.subconf.describe() |
| 82 | |
| 83 | def __init__(self, **kwargs): |
| 84 | super().__init__(**kwargs) |
| 85 | # here we do not use parent=self, so configuration in the form |
| 86 | # c.Bar.SubConfigurable.subvalue=1 will not work. Only |
| 87 | # c.SubConfigurable.subvalue=1 will work and affect all instances of |
| 88 | # SubConfigurable |
| 89 | self.subconf = SubConfigurable(config=self.config) |
| 90 | |
| 91 | |
| 92 | class MyApp(Application): |
nothing calls this directly
no test coverage detected