Skip to content

Commit b8bef86

Browse files
authored
chore: remove fmt: on/off
1 parent 698cf30 commit b8bef86

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

conversions/decimal_to_any.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
"""Convert a positive Decimal Number to Any Other Representation"""
22

33

4-
# fmt: off
5-
ALPHABET_VALUES = {'10': 'A', '11': 'B', '12': 'C', '13': 'D', '14': 'E', '15': 'F', # noqa: E501
4+
ALPHABET_VALUES = {'10': 'A', '11': 'B', '12': 'C', '13': 'D', '14': 'E', '15': 'F',
65
'16': 'G', '17': 'H', '18': 'I', '19': 'J', '20': 'K', '21': 'L',
76
'22': 'M', '23': 'N', '24': 'O', '25': 'P', '26': 'Q', '27': 'R',
87
'28': 'S', '29': 'T', '30': 'U', '31': 'V', '32': 'W', '33': 'X',
98
'34': 'Y', '35': 'Z'}
10-
# fmt: on
119

1210

1311
def decimal_to_any(num: int, base: int) -> str:

0 commit comments

Comments
 (0)