Skip to content

Commit 7b0b1d5

Browse files
author
brentru
committed
() instead of []
1 parent c60742d commit 7b0b1d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_binascii.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_binascii.git"
5050

5151

52-
TABLE_A2B_B64 = [
52+
TABLE_A2B_B64 = (
5353
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
5454
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
5555
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
@@ -66,7 +66,7 @@
6666
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6767
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6868
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
69-
]
69+
)
7070

7171
TABLE_B2A_B64 = (
7272
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/")

0 commit comments

Comments
 (0)