Fix method name

This commit is contained in:
boukeversteegh 2020-06-11 00:43:58 +02:00
parent 3ca75dadd7
commit 83e13aa606

View File

@ -76,8 +76,8 @@ def camel_case(value: str):
"""
Capitalize all words except first and remove symbols.
"""
return capitalize_first(pascal_case(value))
return lowercase_first(pascal_case(value))
def capitalize_first(value: str):
def lowercase_first(value: str):
return value[0:1].lower() + value[1:]