Skip to content

Commit ae9d0f9

Browse files
authored
Fix indentation (#2097)
1 parent 8bb7b8f commit ae9d0f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: conversions/decimal_to_any.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ def decimal_to_any(num: int, base: int) -> str:
6767
raise ValueError("base must be <= 36")
6868
# fmt: off
6969
ALPHABET_VALUES = {'10': 'A', '11': 'B', '12': 'C', '13': 'D', '14': 'E', '15': 'F', '16': 'G', '17': 'H',
70-
'18': 'I', '19': 'J', '20': 'K', '21': 'L', '22': 'M', '23': 'N', '24': 'O', '25': 'P',
71-
'26': 'Q', '27': 'R', '28': 'S', '29': 'T', '30': 'U', '31': 'V', '32': 'W', '33': 'X',
72-
'34': 'Y', '35': 'Z'}
70+
'18': 'I', '19': 'J', '20': 'K', '21': 'L', '22': 'M', '23': 'N', '24': 'O', '25': 'P',
71+
'26': 'Q', '27': 'R', '28': 'S', '29': 'T', '30': 'U', '31': 'V', '32': 'W', '33': 'X',
72+
'34': 'Y', '35': 'Z'}
7373
# fmt: on
7474
new_value = ""
7575
mod = 0

0 commit comments

Comments
 (0)