We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75cc67b commit 92658d1Copy full SHA for 92658d1
1 file changed
src/tui/screens/monitor.py
@@ -186,7 +186,9 @@ async def _refresh_services(self) -> None:
186
images_set.add(img)
187
# Ensure compose-declared images are also shown (e.g., langflow when stopped)
188
try:
189
- for img in await self.container_manager._parse_compose_images(): # best-effort, no YAML dep
+ for (
190
+ img
191
+ ) in await self.container_manager._parse_compose_images(): # best-effort, no YAML dep
192
if img:
193
194
except Exception:
0 commit comments