Dump the account JSON as the content is variable
This commit is contained in:
parent
dbf4a78651
commit
cb70e7ad49
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue