Skip to content

Commit

Permalink
fix wallet string representation
Browse files Browse the repository at this point in the history
  • Loading branch information
John-peterson-coinbase committed Sep 21, 2024
1 parent 8655fc0 commit 5b53a29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdp/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ def __str__(self) -> str:
str: A string representation of the Wallet.
"""
return f"Wallet: (id: {self.id}, network_id: {self.network_id}), server_signer_status: {self.server_signer_status})"
return f"Wallet: (id: {self.id}, network_id: {self.network_id}, server_signer_status: {self.server_signer_status})"

def __repr__(self) -> str:
"""Return a string representation of the Wallet object.
Expand Down

0 comments on commit 5b53a29

Please sign in to comment.