Skip to content

Commit

Permalink
fix CI pipeline warning
Browse files Browse the repository at this point in the history
  • Loading branch information
OBorce committed Nov 14, 2024
1 parent 64d46a0 commit fec05d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/apps/mintlayer/sign_tx/signer.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def __init__(
self.chunkify = tx.chunkify or False
self.tx_req = MintlayerTxRequest()
self.tx_req.details = MintlayerTxRequestDetailsType()
self.tx_req.serialized = []
self.tx_req.serialized = None

# The digest of the presigned external inputs streamed for approval in Step 1. This is
# used to ensure that the inputs streamed for verification in Step 3 are the same as
Expand Down
2 changes: 1 addition & 1 deletion python/src/trezorlib/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def trezorctl_command_with_client(

# the return type of @click.pass_obj is improperly specified and pyright doesn't
# understand that it converts f(obj, *args, **kwargs) to f(*args, **kwargs)
return trezorctl_command_with_client # type: ignore [is incompatible with return type]
return trezorctl_command_with_client


class AliasedGroup(click.Group):
Expand Down

0 comments on commit fec05d2

Please sign in to comment.