We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0584a8 commit dc72b61Copy full SHA for dc72b61
src/import_pictures.py
@@ -107,6 +107,8 @@ async def import_pictures():
107
with open(f'./cache/pictures/{file}', 'r', encoding='utf-8') as fichier:
108
datasCurrent[file.split('.')[0]] = json.load(fichier).get('data')
109
110
+ print(files)
111
+
112
for file in files:
113
if datasOld.get(file.split('.')[0]) is not None:
114
datas[file.split('.')[0]] = filter_datas(datasCurrent[file.split('.')[0]], datasOld[file.split('.')[0]])
0 commit comments