Skip to content

Commit

Permalink
docs: Error building docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pruizlezcano committed Aug 1, 2022
1 parent 4ef2898 commit eb03282
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
beautifulsoup4>=4.11.1
lxml>=4.9.1
# Requirements file for ReadTheDocs, check .readthedocs.yml.
# To build the module reference correctly, make sure every external package
# under `install_requires` in `setup.cfg` is also listed here!
# sphinx_rtd_theme
myst-parser[linkify]
requests>=2.28.1
git+https://github.com/revitron/revitron-sphinx-theme.git#egg=revitron-sphinx-theme
Expand Down
6 changes: 3 additions & 3 deletions src/comicgeeks/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ def __init__(
self._variant_covers = None

@property
def characters(self) -> list[dict]:
def characters(self) -> list:
"""List of characters that appear in this issue"""
if self._characters is None:
self._get_data()
Expand Down Expand Up @@ -684,7 +684,7 @@ def number(self, value):
self._number = value

@property
def person_credits(self) -> list[dict]:
def person_credits(self) -> list:
"""List of people that create this issue"""
if self._person_credits is None:
self._get_data()
Expand Down Expand Up @@ -748,7 +748,7 @@ def url(self, value):
self._url = value

@property
def variant_covers(self) -> list[dict]:
def variant_covers(self) -> list:
"""List of variant covers"""
if self._variant_covers is None:
self._get_data()
Expand Down

0 comments on commit eb03282

Please sign in to comment.