mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 04:33:26 +02:00
fixes syntax error
This commit is contained in:
@@ -587,7 +587,7 @@ class Character:
|
||||
spells |= set(c.spells_known) | set(c.spells_prepared)
|
||||
if self.race is not None:
|
||||
spells |= set(self.race.spells_known) | set(self.race.spells_prepared)
|
||||
return sorted(tuple(spells), key=(lambda x: (x.name))
|
||||
return sorted(tuple(spells), key=(lambda x: x.name))
|
||||
|
||||
@property
|
||||
def spells_prepared(self):
|
||||
|
||||
Reference in New Issue
Block a user