We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4bbefc commit 1f3baedCopy full SHA for 1f3baed
src/import_pictures.py
@@ -115,6 +115,7 @@ async def import_pictures():
115
# print(datasCurrent)
116
# print(datas)
117
118
- async with aiohttp.ClientSession() as session:
+ connector = aiohttp.TCPConnector(ssl=False)
119
+ async with aiohttp.ClientSession(connector=connector) as session:
120
tasks = [process_data(datas[entry], entry, session) for entry in datas]
121
await gather_with_concurrency(sesame_import_parallels_files, tasks)
0 commit comments