You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A setting to ignore the memo-field would be perfect.
After importing, the memo field is always used with more or less usefull information.
I'd like to have it empty and fill it by myself if needed.
Current working workaround for me:
In file ynab.py in line 18:
old: memo = transaction.memo[:199] if transaction.memo else None,
new: memo = None,
The text was updated successfully, but these errors were encountered:
A setting to ignore the memo-field would be perfect.
After importing, the memo field is always used with more or less usefull information.
I'd like to have it empty and fill it by myself if needed.
Current working workaround for me:
In file ynab.py in line 18:
old:
memo = transaction.memo[:199] if transaction.memo else None,
new:
memo = None,
The text was updated successfully, but these errors were encountered: