I have on replit a discord.py file with an currency program. But it stuck at f: in the with open line
"
async def open_account(user):
users = await get_bank_data()
if str (user.id) in users:
return False
else:
users[str(user.id)] = {}
users[str(user.id)]["wallet"] = 0
users[str(user.id)]["bank"] = 0
with open("mainbank.json", "w") as f:
json.dump(users, f)
return True
At error it says: unindent does not match any outer indentation level
pls help me