the following code
accounts = f.get_sepa_accounts()
for account in accounts:
print(account)
is throwing the following error:
print(account) File "<stdin>", line 1 print(account) ^ IndentationError: unexpected indent
I just moved to Visual Studio Code, so no idea if this is a problem specific to the application. I tried 4 spaces and a tab already..Doesn't do anything.
Thanks!

