Skip to content

Commit

Permalink
docs: More build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pruizlezcano committed Aug 1, 2022
1 parent eb03282 commit fe3f7b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/comicgeeks/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1288,7 +1288,7 @@ def image(self) -> str:
return self._image

@property
def creators(self) -> list[Creator]:
def creators(self) -> list:
"""Character creators"""
if self._creators is None:
self._get_data()
Expand All @@ -1309,14 +1309,14 @@ def information(self) -> list:
return self._information

@property
def also_known_as(self) -> list[str]:
def also_known_as(self) -> list:
"""Other character personalities"""
if self._also_known_as is None:
self._get_data()
return self._also_known_as

@property
def series(self) -> list[Series]:
def series(self) -> list:
"""Series in which the character appears"""
if self._series is None:
self._get_data()
Expand Down

0 comments on commit fe3f7b1

Please sign in to comment.