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():
|
async def create_books():
|
||||||
await gather(
|
await gather(
|
||||||
process_book(
|
process_book(
|
||||||
"https://aubergevagabonde.wordpress.com/sommaire/",
|
url="https://aubergevagabonde.wordpress.com/sommaire/",
|
||||||
"Pirateaba",
|
creator="Pirateaba",
|
||||||
"ElliVia",
|
publisher="ElliVia",
|
||||||
"fr",
|
language="fr",
|
||||||
),
|
),
|
||||||
process_book(
|
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,
|
return_exceptions=True,
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user