mypy: Improve typing of zulip_bots/lib.py, to pass with strict-optional.

This commit is contained in:
neiljp (Neil Pilgrim) 2017-12-22 11:15:08 -08:00 committed by showell
parent 6489f78edd
commit 486f1d2f48

View file

@ -215,7 +215,7 @@ class ExternalBotHandler(object):
sys.exit(message)
def extract_query_without_mention(message, client):
# type: (Dict[str, Any], ExternalBotHandler) -> str
# type: (Dict[str, Any], ExternalBotHandler) -> Optional[str]
"""
If the bot is the first @mention in the message, then this function returns
the stripped message with the bot's @mention removed. Otherwise, it returns None.