Wrap values() call in list to fix type error (#9460) (#9461)

(cherry picked from commit 721f56f36e)

Co-authored-by: Joe Rogers <1337joe@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2025-04-05 09:20:38 +11:00 committed by GitHub
parent 2a9d737157
commit 1dd056fdf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -805,7 +805,7 @@ class IconList(ListAPI):
def get_queryset(self):
"""Return a list of all available icon packages."""
return get_icon_packs().values()
return list(get_icon_packs().values())
class SelectionListList(ListCreateAPI):