mypy: Add client_cert assertion & amend annotation in Zulip API.

This commit is contained in:
neiljp (Neil Pilgrim) 2018-01-07 08:32:43 -08:00 committed by showell
parent 13bf6f7262
commit d26e44ebb2

View file

@ -397,7 +397,8 @@ class Client(object):
# Build a client cert object for requests
if self.client_cert_key is not None:
client_cert = (self.client_cert, self.client_cert_key) # type: Union[str, Tuple[str, str]]
assert(self.client_cert is not None) # Otherwise RuntimeError near end of __init__
client_cert = (self.client_cert, self.client_cert_key) # type: Union[None, str, Tuple[str, str]]
else:
client_cert = self.client_cert