From a4040928be0687cc320e971d8b0bac10dfbaece8 Mon Sep 17 00:00:00 2001 From: tcely Date: Sun, 15 Jun 2025 06:27:34 -0400 Subject: [PATCH] Print only a list of keys --- tubesync/common/huey.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/common/huey.py b/tubesync/common/huey.py index 3f02c2a0..4bdd24b5 100644 --- a/tubesync/common/huey.py +++ b/tubesync/common/huey.py @@ -10,7 +10,7 @@ def h_q_dict(q, /): return dict( scheduled=(q.scheduled_count(), q.scheduled(),), pending=(q.pending_count(), q.pending(),), - result=(q.result_count(), q.all_results().keys(),), + result=(q.result_count(), list(q.all_results().keys()),), )