From d4ff9a0e069ee006e26d96c63177083f96b962f5 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 10 Feb 2025 21:27:23 -0600 Subject: [PATCH] remove extraneous print from recordings summary code --- frigate/api/media.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/frigate/api/media.py b/frigate/api/media.py index f67ad52f2..39a6f7d1e 100644 --- a/frigate/api/media.py +++ b/frigate/api/media.py @@ -409,8 +409,6 @@ def all_recordings_summary(params: MediaRecordingsSummaryQueryParams = Depends() if cameras != "all": query = query.where(Recordings.camera << cameras.split(",")) - print(query) - recording_days = query.namedtuples() days = {day.day: True for day in recording_days}