Skip to content

Commit a2eb366

Browse files
authored
Merge pull request #137 from LedgerHQ/fix_missing_import_load_app
Fix missing import in loadApp.py
2 parents f180b96 + bcba3b6 commit a2eb366

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ledgerblue/loadApp.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,11 @@ def main(args, debug: bool = True):
9595
from .ecWrapper import PrivateKey
9696
from .comm import getDongle
9797
from .hexParser import IntelHexParser, IntelHexPrinter
98-
from .hexLoader import HexLoader, encodetlv, BOLOS_TAG_APPNAME, BOLOS_TAG_DERIVEPATH
98+
from .hexLoader import (
99+
HexLoader, encodelv, encodetlv,
100+
BOLOS_TAG_APPNAME, BOLOS_TAG_DERIVEPATH,
101+
BOLOS_TAG_APPVERSION, BOLOS_TAG_ICON, BOLOS_TAG_DEPENDENCY
102+
)
99103
from .deployed import getDeployedSecretV1, getDeployedSecretV2
100104
import struct
101105
import binascii

0 commit comments

Comments
 (0)