fixup: values instead of items

This commit is contained in:
tcely 2025-05-30 01:55:12 -04:00 committed by GitHub
parent 33491edb9e
commit ea43d54021
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -58,7 +58,7 @@ DJANGO_HUEY = {
'network': sqlite_tasks('network'),
},
}
for django_huey_queue in DJANGO_HUEY['queues'].items():
for django_huey_queue in DJANGO_HUEY['queues'].values():
connection = django_huey_queue.get('connection')
if connection:
filepath = Path('/.' + connection.get('filename') or '').resolve(strict=False)