Skip to content

Commit

Permalink
fix: fixed an extra parenthesis in pk export (#2101)
Browse files Browse the repository at this point in the history
  • Loading branch information
theodorecurtil authored May 31, 2024
1 parent dd6156b commit 916f35c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape_accounts/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def export(cli_ctx, alias):
private_key = EthAccount.decrypt(account, password)
address = to_checksum_address(account["address"])
cli_ctx.logger.success(
f"Account {address} private key: {click.style(private_key.hex(), bold=True)})"
f"Account {address} private key: {click.style(private_key.hex(), bold=True)}"
)


Expand Down

0 comments on commit 916f35c

Please sign in to comment.