Use the wrapper.
This commit is contained in:
parent
77bb7b9caa
commit
f2265de1b7
1 changed files with 5 additions and 3 deletions
|
@ -132,9 +132,11 @@
|
|||
|
||||
;; Loads all accounts - it expects .csv files in given directory.
|
||||
(define (load-accounts accounts-list dir)
|
||||
(map (lambda (acc)
|
||||
(bank-fio-parse (make-pathname dir (string-append acc ".csv"))))
|
||||
accounts-list))
|
||||
(with-progresses%
|
||||
#t "Fio" (length accounts-list)
|
||||
(map (lambda (acc)
|
||||
(bank-fio-parse (make-pathname dir (string-append acc ".csv"))))
|
||||
accounts-list)))
|
||||
|
||||
;; Reads single number from given file and returns it. If no number
|
||||
;; is and/or the file does not exist, returns #f.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue