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