replace 2-element f-strings with simple '+' concatenations
Python's 'ast' module and its 'NodeVisitor' class were incredibly helpful in identifying these
This commit is contained in:
@@ -85,7 +85,7 @@ class MadokamiMangaExtractor(MadokamiExtractor):
|
||||
else:
|
||||
ch["volume"] = ch["chapter"] = ch["chapter_end"] = 0
|
||||
|
||||
url = f"{self.root}{ch['path']}"
|
||||
url = self.root + ch["path"]
|
||||
text.nameext_from_url(url, ch)
|
||||
|
||||
yield Message.Directory, "", ch
|
||||
|
||||
Reference in New Issue
Block a user