Skip to content

Commit

Permalink
Fix capitalization issue
Browse files Browse the repository at this point in the history
  • Loading branch information
memgonzales committed Nov 8, 2023
1 parent 953692f commit 0a21146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/callbacks/home/sense/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def sanitize_symbols(sentence):


def capitalize_first_word(sentence):
sentence = sentence.capitalize()
sentence = sentence[:1].upper() + sentence[1:]
sentence = sanitize_symbols(sentence)

return sentence
Expand Down

0 comments on commit 0a21146

Please sign in to comment.