Fix push to ynab with revolut

This commit is contained in:
Gabriel Augendre 2020-02-12 00:00:05 +01:00
parent 01e0d481b6
commit 9dee12d2c5
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

View file

@ -5,6 +5,8 @@ from collections import defaultdict
import click
import dateparser
from ofx_processor.utils import ynab
def process_amount(amount):
if amount:
@ -40,7 +42,7 @@ def process_outflow(line):
default=False,
help="Push data directly to YNAB instead of just writing a file.",
)
def cli(csv_filename, ynab):
def cli(csv_filename, push_to_ynab):
formatted_data = []
ynab_transactions = []
transaction_ids = defaultdict(int)
@ -91,7 +93,7 @@ def cli(csv_filename, ynab):
else:
click.secho("Nothing to write.")
if ynab and ynab_transactions:
if push_to_ynab and ynab_transactions:
ynab.push_transactions(ynab_transactions, "revolut")