Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit 5b265d1

Browse files
committed
Python 3 support WIP
1 parent 6d82fba commit 5b265d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

btchip/btchip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def verifyPin(self, pin):
106106

107107
def getVerifyPinRemainingAttempts(self):
108108
apdu = [ self.BTCHIP_CLA, self.BTCHIP_INS_VERIFY_PIN, 0x80, 0x00, 0x01 ]
109-
apdu.extend(bytearray("0"))
109+
apdu.extend(bytearray(b'0'))
110110
try:
111111
self.dongle.exchange(bytearray(apdu))
112112
except BTChipException as e:

0 commit comments

Comments
 (0)