mypy: Clarify type hints in zulip/integrations/.

This commit is contained in:
neiljp (Neil Pilgrim) 2019-11-06 06:31:30 -08:00 committed by Tim Abbott
parent 357a5e06f3
commit f81843f189
3 changed files with 4 additions and 4 deletions

View file

@ -341,7 +341,7 @@ def decrypt_zephyr(zephyr_class, instance, body):
return decrypted
def process_notice(notice, log):
# type: (zulip, Optional[IO[Any]]) -> None
# type: (Any, Optional[IO[Any]]) -> None
(zsig, body) = parse_zephyr_body(notice.message, notice.format)
is_personal = False
is_huddle = False