diff --git a/ofx_processor/processors/revolut.py b/ofx_processor/processors/revolut.py index 076cea9..bed341f 100644 --- a/ofx_processor/processors/revolut.py +++ b/ofx_processor/processors/revolut.py @@ -54,7 +54,7 @@ class RevolutProcessor(Processor): def parse_file(self): with open(self.filename) as f: reader = csv.DictReader(f, delimiter=";") - return reader + return [line for line in reader] @staticmethod @click.command("revolut", help="Process Revolut bank statement (CSV)")