upper instead of capitalize
This commit is contained in:
parent
bb2d7f7b31
commit
cea9e14e3f
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -100,7 +100,7 @@ def createBaseTrigger(*lists) -> list:
|
||||||
|
|
||||||
def createBaseAnswers(word) -> list:
|
def createBaseAnswers(word) -> list:
|
||||||
"""Generates default answers for a given word"""
|
"""Generates default answers for a given word"""
|
||||||
return [word, f"({word})", word.capitalize(), f"{word} lol"]
|
return [word, f"({word})", word.upper(), f"{word} lol"]
|
||||||
|
|
||||||
def main(accessToken: str, accessTokenSecret: str, consumerKey: str, consumerSecret: str, users: list):
|
def main(accessToken: str, accessTokenSecret: str, consumerKey: str, consumerSecret: str, users: list):
|
||||||
"""Main method."""
|
"""Main method."""
|
||||||
|
|
Reference in a new issue