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 4d7a68d commit 5201064Copy full SHA for 5201064
src/import_pictures.py
@@ -105,11 +105,11 @@ async def import_pictures():
105
with open(f'./cache/pictures/{file}', 'r', encoding='utf-8') as fichier:
106
datasCurrent[file.split('.')[0]] = json.load(fichier).get('data')
107
108
- # for file in files:
+ for file in files:
109
# if datasOld.get(file.split('.')[0]) is not None:
110
# datas[file.split('.')[0]] = filter_datas(datasCurrent[file.split('.')[0]], datasOld[file.split('.')[0]])
111
# else:
112
- datas[file.split('.')[0]] = datasCurrent[file.split('.')[0]]
+ datas[file.split('.')[0]] = datasCurrent[file.split('.')[0]]
113
114
# print(datasOld)
115
# print(datasCurrent)
0 commit comments