def snake_case_to_capitalized_words()

in _compile_cloudformation_template.py [0:0]


def snake_case_to_capitalized_words(string):
    return ''.join([s.capitalize() for s in string.split('_')])