File size: 111 Bytes
ebee301
 
1
2
def convert_keys_to_lowercase(input_dict):
    return {key.lower(): value for key, value in input_dict.items()}