Skip to content

Commit

Permalink
fix silly mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
ArdaxHz committed Oct 16, 2024
1 parent df33a5c commit d2782ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mangaplus/mangaplus.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def fetch_updates(self):
]
self.override_options = self._open_override_options()
self._num2words: Optional[str] = self._get_num2words_string()
self.manga_no_chapters = list(self.override_options.get("no_chapters", {}).values())
self.manga_no_chapters = self.override_options.get("no_chapters", [])

self._get_untracked_manga()
self._get_manga_chapters()
Expand Down

0 comments on commit d2782ef

Please sign in to comment.