Solved variable refence bugs

This commit is contained in:
2025-06-20 09:51:58 +02:00
parent 0114b30824
commit 0ca33139b8
6 changed files with 11 additions and 7 deletions

View File

@@ -114,5 +114,8 @@ class LookupModule(LookupBase):
cards.append(card)
# Sort A-Z
cards.sort(key=lambda c: c['title'].lower())
# Return the list of cards
return [cards]