Fix revolut parse file

This commit is contained in:
Gabriel Augendre 2020-02-26 17:46:44 +01:00
parent c5cde65832
commit facff567de
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

View file

@ -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)")