From 3d51867949dd553077b2bc90d12b4bd2596c769b Mon Sep 17 00:00:00 2001 From: Richard Garber Date: Mon, 25 Nov 2024 17:08:48 -0500 Subject: [PATCH] Remove debug print --- cozy/media/tag_reader.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cozy/media/tag_reader.py b/cozy/media/tag_reader.py index 614d8e6f..1dfdb1e9 100644 --- a/cozy/media/tag_reader.py +++ b/cozy/media/tag_reader.py @@ -195,7 +195,6 @@ def _get_ogg_chapters(self) -> list[Chapter]: chapter_dict[chapter_num][1] = comment_split[1] elif len(comment_split[0]) == 10: chapter_dict[chapter_num][0] = self._vorbis_timestamp_to_secs(comment_split[1]) - print(chapter_dict) if 0 not in chapter_dict or chapter_dict[0][0] is None or chapter_dict[0][1] is None: return self._get_single_chapter() i = 1