(self)
| 112 | |
| 113 | @property |
| 114 | def configured_components(self): |
| 115 | yield from ( |
| 116 | ConfiguredComponent(self, name, value) |
| 117 | for name, value in self.components_section.options() |
| 118 | ) |
| 119 | |
| 120 | def get_lint_errors(self): |
| 121 | errors = [] |
nothing calls this directly
no test coverage detected