Skip to content

Commit 3c79ebd

Browse files
Removed false messaging from component prefix
1 parent 4b42c3f commit 3c79ebd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/techui_builder/builder.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,17 @@ def generate_screens(self):
124124
)
125125
for prefix in filtered_prefixes:
126126
screen_entities.extend(self.entities[prefix])
127+
<<<<<<< HEAD
127128
else:
128129
LOGGER.warning(
129130
f"{self.techui.name}: [bold]{component.prefix}[/bold] set in \
130131
[bold]{component_name}[/bold] does not match any P field in the ioc.yaml \
131132
files in services"
132133
)
134+
=======
135+
>>>>>>> 3054d0f (Removed false messaging from component prefix not being found using wildcards)
133136
# If the component prefix is in entities.keys, add to screen entities
134-
if component.prefix in self.entities.keys():
137+
elif component.prefix in self.entities.keys():
135138
screen_entities.extend(self.entities[component.prefix])
136139
else:
137140
LOGGER.warning(

0 commit comments

Comments
 (0)