Skip to content

Commit

Permalink
tuple unpacking
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-p committed Apr 16, 2024
1 parent 770c84a commit de9b9d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algokit_utils/beta/account_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def random(self) -> AddressAndSigner:
:return: The account
"""
[sk, addr] = generate_account() # type: ignore[no-untyped-call]
(sk, addr) = generate_account() # type: ignore[no-untyped-call]
signer = AccountTransactionSigner(sk)

self.set_signer(addr, signer)
Expand Down

0 comments on commit de9b9d9

Please sign in to comment.