Add arg name to process_book
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
parent
5c64effdc7
commit
255ce9511b
13
books.py
13
books.py
@ -150,13 +150,16 @@ def process_book(url: str, creator: str, publisher: str, language: str):
|
||||
async def create_books():
|
||||
await gather(
|
||||
process_book(
|
||||
"https://aubergevagabonde.wordpress.com/sommaire/",
|
||||
"Pirateaba",
|
||||
"ElliVia",
|
||||
"fr",
|
||||
url="https://aubergevagabonde.wordpress.com/sommaire/",
|
||||
creator="Pirateaba",
|
||||
publisher="ElliVia",
|
||||
language="fr",
|
||||
),
|
||||
process_book(
|
||||
"https://wanderinginn.com/table-of-contents/", "Pirateaba", "Xefir", "en"
|
||||
url="https://wanderinginn.com/table-of-contents/",
|
||||
creator="Pirateaba",
|
||||
publisher="Xefir",
|
||||
language="en",
|
||||
),
|
||||
return_exceptions=True,
|
||||
)
|
||||
|
Reference in New Issue
Block a user