open-translate / utils.py
Gundeep Singh
Main
ebee301
raw
history blame
No virus
111 Bytes
def convert_keys_to_lowercase(input_dict):
return {key.lower(): value for key, value in input_dict.items()}