The encoded bytes are not useful to print

This commit is contained in:
tcely 2025-06-15 05:55:08 -04:00 committed by GitHub
parent be8a2035ba
commit f73ac4e59a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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(),),
result=(q.result_count(), q.all_results().keys(),),
)