We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 667641a commit 961c4a7Copy full SHA for 961c4a7
nlightreader/parsers/combined/lib/lib_base.py
@@ -60,7 +60,7 @@ def search_manga(self, form: RequestForm) -> list[Manga]:
60
61
def get_chapters(self, manga: Manga) -> list[Chapter]:
62
branches_url = (
63
- f"{self.url_api}/" f"branches/{manga.content_id.split('--')[0]}"
+ f"{self.url_api}/branches/{manga.content_id.split('--')[0]}"
64
)
65
66
branches = {}
@@ -69,8 +69,7 @@ def get_chapters(self, manga: Manga) -> list[Chapter]:
69
branches.update({branch["id"]: branch["teams"][0]["name"]})
70
71
chapters_url = (
72
- f"{self.url_api}/{self.content_name}/"
73
- f"{manga.content_id}/chapters"
+ f"{self.url_api}/{self.content_name}/{manga.content_id}/chapters"
74
75
76
chapters: list[Chapter] = []
0 commit comments