tuxbot-bot/tuxbot/core/utils/functions/utils.py

3 lines
88 B
Python

def upper_first(string: str) -> str:
return "".join(string[0].upper() + string[1:])