moto/moto/swf/utils.py
2023-04-26 10:56:53 +00:00

3 lines
71 B
Python

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