fix: IndentationError in wallet.py line 555
Some checks failed
CLI Tests / test-cli (push) Failing after 11s
Deploy to Testnet / deploy-testnet (push) Successful in 1m5s
Deploy to Testnet / notify-deployment (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

- Fix unexpected indent on return statement
- Return should be at same level as except block
- Fixes cli-level1-tests CI failure
This commit is contained in:
aitbc
2026-04-29 20:47:09 +02:00
parent ab1ddfe1cc
commit 4876895644

View File

@@ -552,7 +552,7 @@ def balance(ctx):
},
ctx.obj.get("output_format", "table"),
)
return
return
except Exception:
pass