Dump the account JSON as the content is variable

This commit is contained in:
Mark Veidemanis 2022-04-19 21:03:40 +01:00
parent dbf4a78651
commit cb70e7ad49
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 1 additions and 1 deletions

View File

@ -776,7 +776,7 @@ class IRCCommands(object):
accounts = tx.sinks.nordigen.get_all_account_info()
for name, accounts in accounts.items():
for account in accounts:
msg(f"{name} {account['account_id']} {account['details']} {account['currency']}")
msg(dumps(account))
class transactions(object):
name = "transactions"