From 897aa9ce7aec9b777becf67a015001474c1fc957 Mon Sep 17 00:00:00 2001 From: tcely Date: Sat, 14 Jun 2025 12:45:10 -0400 Subject: [PATCH] Display which functions are registered --- tubesync/common/huey.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tubesync/common/huey.py b/tubesync/common/huey.py index e080d97f..fa36c619 100644 --- a/tubesync/common/huey.py +++ b/tubesync/common/huey.py @@ -19,6 +19,7 @@ def h_q_tuple(q, /): q = get_queue(q) return ( q.name, + list(q._registry._registry.keys()), h_q_dict(q), )