Skip to content

Commit

Permalink
SFT-2751: fixed linting and compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
mjg-foundation committed Sep 12, 2023
1 parent cecc272 commit 3b20316
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ports/stm32/boards/Passport/modules/flows/scan_qr_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self,
explicit_type=None,
data_description=None,
max_frames=None,
failure_message=None):
failure_message=None,
pass_error=False):
"""
Initialize the scan QR flow.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async def scan_transaction(self):
data_description='a PSBT file',
max_frames=self.max_frames,
failure_message="Unable to Scan QR code, \
try signing using the microSD card.\n\n{}").run()
try signing using the microSD card.\n\n{}",
pass_error=True).run()
if result is None:
# User canceled the scan
Expand Down

0 comments on commit 3b20316

Please sign in to comment.