Skip to content

Commit

Permalink
fix: shouldn't be an f string
Browse files Browse the repository at this point in the history
  • Loading branch information
z80dev authored and antazoey committed Nov 18, 2023
1 parent 346c463 commit bec49d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape_accounts/accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def sign_message(self, msg: Any, **signer_options) -> Optional[MessageSignature]
msg = encode_defunct(primitive=msg)
elif isinstance(msg, EIP712Message):
# Display message data to user
display_msg = f"Signing EIP712 Message\n"
display_msg = "Signing EIP712 Message\n"

# Domain Data
display_msg += "Domain\n"
Expand Down

0 comments on commit bec49d1

Please sign in to comment.