From ef9af0cab5ca9bdad08829e41268b095a7ea0867 Mon Sep 17 00:00:00 2001 From: BoulderBadgeDad Date: Thu, 4 Jun 2026 21:17:37 -0700 Subject: [PATCH] Fix S110: log instead of pass in canonical search-query add --- core/discovery/playlist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/discovery/playlist.py b/core/discovery/playlist.py index 1d6fce88..14af5c29 100644 --- a/core/discovery/playlist.py +++ b/core/discovery/playlist.py @@ -258,8 +258,8 @@ def run_playlist_discovery_worker(playlists, automation_id=None, deps: PlaylistD for _q in (f"{_cq_artist} {_cq_title}", _cq_title): if _q not in search_queries: search_queries.append(_q) - except Exception: - pass + except Exception as _cq_err: + logger.debug("canonical search-query add failed: %s", _cq_err) # Step 3: Search and score best_match = None