We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70f1bef commit a8fb737Copy full SHA for a8fb737
src/techui_builder/builder.py
@@ -141,14 +141,8 @@ def generate_screens(self):
141
)
142
for prefix in filtered_prefixes:
143
screen_entities.extend(self.entities[prefix])
144
- else:
145
- LOGGER.warning(
146
- f"{self.techui.name}: [bold]{component.prefix}[/bold] set in \
147
-[bold]{component.name}[/bold] does not match any P field in the ioc.yaml \
148
-files in services"
149
- )
150
# If the component prefix is in entities.keys, add to screen entities
151
- if component.prefix in self.entities.keys():
+ elif component.prefix in self.entities.keys():
152
screen_entities.extend(self.entities[component.prefix])
153
else:
154
LOGGER.warning(
0 commit comments