Skip to content

Commit

Permalink
fix bug in _list_cmd()
Browse files Browse the repository at this point in the history
  • Loading branch information
adbenitez committed May 20, 2024
1 parent e3c7457 commit 055f3cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deltabot_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def _list_cmd(cli: BotCli, bot: Bot, _args: Namespace) -> None:
for accid in accounts:
addr = cli.get_address(rpc, accid)
if not rpc.is_configured(accid):
addr = addr + " (not configured)"
addr = f"{addr or ''} (not configured)"
print(f"#{accid} - {addr}")


Expand Down

0 comments on commit 055f3cf

Please sign in to comment.