Skip to content

Commit 9340422

Browse files
committed
Fix linting error
1 parent fa8c070 commit 9340422

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bna/crypto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def decrypt(response: bytes, otp: bytes) -> bytearray:
2525
def bytes_to_restore_code(digest: Union[bytes, bytearray]) -> str:
2626
ret = []
2727
for i in digest:
28-
c = i & 0x1F
28+
c = i & 0x1f
2929
if c < 10:
3030
c += 48
3131
else:

0 commit comments

Comments
 (0)