moto/moto/swf/utils.py
2019-10-31 10:36:05 -07:00

3 lines
59 B
Python

def decapitalize(key):
return key[0].lower() + key[1:]