From b476309f8e3d7076d44a936b1f6e69c00143b4cf Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 3 Feb 2026 23:44:21 -0600 Subject: [PATCH] updates to status --- vixy_status.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/vixy_status.py b/vixy_status.py index 825673e..f0b8b9d 100644 --- a/vixy_status.py +++ b/vixy_status.py @@ -199,10 +199,7 @@ def get_vision_status() -> str: total = len(events) camera_breakdown = ", ".join(f"{cam}: {count}" for cam, count in by_camera.items()) - if unannotated == total: - return f"Vision: {total} motion events ({camera_breakdown})" - else: - return f"Vision: {total} motion events ({camera_breakdown}), {total - unannotated} annotated" + return f"{camera_breakdown}" except Exception as e: return f"Vision: error ({e})" @@ -215,7 +212,6 @@ def format_status_for_wakeup() -> str: Returns format like: [ENV] Basement: 69.8F, 24.5% humidity, 24.6 lux [WHO] Foxy: present (87%, moving) - [MSG] Matrix: no new messages [CAM] Vision: 12 motion events (basement: 12) """ lines = []