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 = []