Skip to content

Commit f08cc3d

Browse files
author
Paul K. Korir, PhD
committed
bugfix: added missing character ('u')
1 parent 1100ab9 commit f08cc3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noid/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
DIGIT = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'] # 10
2-
XDIGIT = DIGIT + ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'v', 'w',
2+
XDIGIT = DIGIT + ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
33
'x', 'y', 'z'] + \
44
['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y',
55
'Z']

0 commit comments

Comments
 (0)