caching für change_day1/month1/...

This commit is contained in:
Frederik Jaeckel 2023-01-08 20:56:27 +01:00
parent 8cfa54f693
commit 8503fd3e32
3 changed files with 66 additions and 11 deletions

View file

@ -201,16 +201,6 @@ class ImportWizard(Wizard):
'investment.msg_err_unknown_content',
linetxt = line,
))
# ~ print('- found %d records' % len(result))
# ~ print('- dates from %s to %s' % (
# ~ min_date.isoformat() if min_date is not None else '-',
# ~ max_date.isoformat() if max_date is not None else '-',
# ~ ))
# ~ print('- rates from %s to %s' % (
# ~ str(min_rate) if min_rate is not None else '-',
# ~ str(max_rate) if max_rate is not None else '-',
# ~ ))
return (result, max_date, min_date)
# end ImportWizard