Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
moisses89 committed Apr 21, 2023
1 parent f2c9c8a commit 59d0e5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions safe_cli/operators/hw_accounts/ledger_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from eth_account.signers.base import BaseAccount
from ledgerblue import Dongle
from ledgereth import sign_typed_data_draft, create_transaction
from ledgereth import create_transaction, sign_typed_data_draft
from web3.types import TxParams


Expand Down Expand Up @@ -84,7 +84,7 @@ def sign_transaction(self, tx: TxParams):
nonce=tx["nonce"],
chain_id=tx["chainId"],
sender_path=self.path,
dongle=self.dongle
dongle=self.dongle,
)
return signed

Expand Down

0 comments on commit 59d0e5a

Please sign in to comment.