File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -107,14 +107,14 @@ async def import_pictures():
107107 with open (f'./cache/pictures/{ file } ' , 'r' , encoding = 'utf-8' ) as fichier :
108108 datasCurrent [file .split ('.' )[0 ]] = json .load (fichier ).get ('data' )
109109
110- print (files )
111-
112110 for file in files :
113111 if datasOld .get (file .split ('.' )[0 ]) is not None :
114112 datas [file .split ('.' )[0 ]] = filter_datas (datasCurrent [file .split ('.' )[0 ]], datasOld [file .split ('.' )[0 ]])
115113 else :
116114 datas [file .split ('.' )[0 ]] = datasCurrent [file .split ('.' )[0 ]]
117115
116+ print (datas )
117+
118118 async with aiohttp .ClientSession () as session :
119119 tasks = [process_data (datas [entry ], entry , session ) for entry in datas ]
120120 await gather_with_concurrency (sesame_import_parallels_files , tasks )
You can’t perform that action at this time.
0 commit comments