convert deque -> list

I don't feel this being efficient
This commit is contained in:
AngelBottomless 2022-10-23 21:41:39 +09:00 committed by AUTOMATIC1111
parent 348f89c8d4
commit 0d2e1dac40
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ def report_statistics(loss_info:dict):
for key in keys:
try:
print("Loss statistics for file " + key)
info, recent = statistics(loss_info[key])
info, recent = statistics(list(loss_info[key]))
print(info)
print(recent)
except Exception as e: