10 lines
98 B
Python
10 lines
98 B
Python
CONSTANTS = {
|
|
'A': 1,
|
|
'B': 2,
|
|
'C': 3,
|
|
}
|
|
|
|
|
|
def utility_function():
|
|
return 123, 456
|