We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1690be commit 1ffeaeeCopy full SHA for 1ffeaee
main.py
@@ -106,7 +106,7 @@ async def main():
106
if args.imports == 'ind' or args.imports == 'all':
107
collection_tasks = [col.get('function')(url, col, headers) for col in collections if col.get('method') != 'ExportPhotos']
108
if args.imports == 'pictures' or args.imports == 'all':
109
- collection_tasks = [col.get('function')(url, col, headers) for col in collections if col.get('method') == 'ExportPhotos']
+ collection_tasks = [col.get('function')(url, col, headers) for col in collections if col.get('method') == 'ExportPhotos']
110
111
await asyncio.gather(*collection_tasks)
112
print("Taiga crawler ended successful !!!")
0 commit comments