[Utils] Added question() to chat_formatting (#365)

This commit is contained in:
Thomas Mercurio 2016-08-31 11:30:05 -07:00 committed by Twentysix
parent 38323a6f4d
commit 621b57d0e4

View File

@ -10,6 +10,10 @@ def info(text):
return "\N{INFORMATION SOURCE} {}".format(text)
def question(text):
return "\N{BLACK QUESTION MARK ORNAMENT} {}".format(text)
def bold(text):
return "**{}**".format(text)