Fixes a bug with Dinosaur Comics

This commit is contained in:
2025-12-05 10:15:00 -07:00
parent 936c24fd79
commit 9e6b9c35c2
3 changed files with 3 additions and 3 deletions

View File

@@ -86,7 +86,7 @@ class DinosaurComic(Comic):
return self.strips[-1]["identifier"]
def get_all_strips(self) -> list:
return [strip["indentifier"] for strip in self.strips]
return [strip["identifier"] for strip in self.strips]
def __new__(cls):
if not hasattr(cls, 'instance'):