From e3957b8eed7125ee1893a07c848bdfd263f5e33e Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Fri, 15 May 2026 12:33:05 -0400 Subject: [PATCH] fix(lint): rename unused now param in produceDiscover to _ revive unused-parameter: produceDiscover keys off dateStr, not now, but must keep the uniform systemPlaylistProducer signature. Blank the unused param (param names don't affect func-type identity). Co-Authored-By: Claude Opus 4.7 (1M context) --- internal/playlists/system.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/playlists/system.go b/internal/playlists/system.go index faf8dc6d..6e7cadc2 100644 --- a/internal/playlists/system.go +++ b/internal/playlists/system.go @@ -370,7 +370,7 @@ func produceSeedMixes( // (logged, yields no Discover) to match the prior behavior. func produceDiscover( ctx context.Context, q *dbq.Queries, logger *slog.Logger, - userID pgtype.UUID, dateStr string, now time.Time, + userID pgtype.UUID, dateStr string, _ time.Time, ) ([]builtPlaylist, error) { tracks, derr := buildDiscoverCandidates(ctx, q, logger, userID, dateStr) if derr != nil {