Skip to content

Commit

Permalink
Merge pull request #135 from LedgerHQ/xch/fix-loadApp-return-code
Browse files Browse the repository at this point in the history
loadApp.py: Fix return code
  • Loading branch information
xchapron-ledger authored Apr 25, 2024
2 parents e2ec856 + e7bcd60 commit 7567198
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ledgerblue/loadApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,4 +291,5 @@ def close(self):
if __name__ == '__main__':
import sys

sys.exit(main(sys.argv[1:]))
main(sys.argv[1:])
sys.exit(0)

0 comments on commit 7567198

Please sign in to comment.