This commit is contained in:
Cyberes 2023-10-05 17:41:01 -06:00
parent 27e461c76b
commit 19e62be3e8
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@ class RedisPriorityQueue:
def print_all_items(self):
items = self.redis.zrange('queue', 0, -1)
print(items)
for item in items:
print(item.decode('utf-8'))