Skip to content

Commit

Permalink
Merge pull request #137 from LedgerHQ/fix_missing_import_load_app
Browse files Browse the repository at this point in the history
Fix missing import in loadApp.py
  • Loading branch information
tjoly-ledger authored May 21, 2024
2 parents f180b96 + bcba3b6 commit a2eb366
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ledgerblue/loadApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,11 @@ def main(args, debug: bool = True):
from .ecWrapper import PrivateKey
from .comm import getDongle
from .hexParser import IntelHexParser, IntelHexPrinter
from .hexLoader import HexLoader, encodetlv, BOLOS_TAG_APPNAME, BOLOS_TAG_DERIVEPATH
from .hexLoader import (
HexLoader, encodelv, encodetlv,
BOLOS_TAG_APPNAME, BOLOS_TAG_DERIVEPATH,
BOLOS_TAG_APPVERSION, BOLOS_TAG_ICON, BOLOS_TAG_DEPENDENCY
)
from .deployed import getDeployedSecretV1, getDeployedSecretV2
import struct
import binascii
Expand Down

0 comments on commit a2eb366

Please sign in to comment.