Fixes a bug with Dinosaur Comics
This commit is contained in:
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "comic_download"
|
name = "comic_download"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
authors = [
|
authors = [
|
||||||
{name = "Markil 3", email = "markil3@singlepilot.net"}
|
{name = "Markil 3", email = "markil3@singlepilot.net"}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = comic_download
|
name = comic_download
|
||||||
version = 0.2.0
|
version = 0.2.1
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
package_dir=
|
package_dir=
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ class DinosaurComic(Comic):
|
|||||||
return self.strips[-1]["identifier"]
|
return self.strips[-1]["identifier"]
|
||||||
|
|
||||||
def get_all_strips(self) -> list:
|
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):
|
def __new__(cls):
|
||||||
if not hasattr(cls, 'instance'):
|
if not hasattr(cls, 'instance'):
|
||||||
|
|||||||
Reference in New Issue
Block a user