mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-03-19 21:19:47 +00:00
Fix indentation (#2097)
This commit is contained in:
parent
8bb7b8f457
commit
ae9d0f9196
@ -67,9 +67,9 @@ def decimal_to_any(num: int, base: int) -> str:
|
||||
raise ValueError("base must be <= 36")
|
||||
# fmt: off
|
||||
ALPHABET_VALUES = {'10': 'A', '11': 'B', '12': 'C', '13': 'D', '14': 'E', '15': 'F', '16': 'G', '17': 'H',
|
||||
'18': 'I', '19': 'J', '20': 'K', '21': 'L', '22': 'M', '23': 'N', '24': 'O', '25': 'P',
|
||||
'26': 'Q', '27': 'R', '28': 'S', '29': 'T', '30': 'U', '31': 'V', '32': 'W', '33': 'X',
|
||||
'34': 'Y', '35': 'Z'}
|
||||
'18': 'I', '19': 'J', '20': 'K', '21': 'L', '22': 'M', '23': 'N', '24': 'O', '25': 'P',
|
||||
'26': 'Q', '27': 'R', '28': 'S', '29': 'T', '30': 'U', '31': 'V', '32': 'W', '33': 'X',
|
||||
'34': 'Y', '35': 'Z'}
|
||||
# fmt: on
|
||||
new_value = ""
|
||||
mod = 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user