Closed prjemian closed 2 months ago
We can get by without this change (which might break existing usage) with:
for attr_name in tetramm.component_names:
attr = getattr(tetramm, attr_name)
if attr_name.startswith("current_"):
for ch_name in attr.component_names:
getattr(attr, ch_name).kind = "config"
elif attr_name.startswith("position_"):
attr.kind = "config"
But for sure, all these components need to be kind="config"
.
Somehow, this missed testing. A long time ago.