From b36ce70ead1f0a94f8d937e64aa95253ded7cd70 Mon Sep 17 00:00:00 2001 From: Povilas Balciunas Date: Wed, 18 Aug 2021 14:24:36 +0300 Subject: [PATCH] Add more type hints (#4754) * Add more type hints * Update mitmproxy/net/tls.py Co-authored-by: Thomas Kriechbaumer Co-authored-by: Maximilian Hils Co-authored-by: Thomas Kriechbaumer --- mitmproxy/net/tls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitmproxy/net/tls.py b/mitmproxy/net/tls.py index 469ecce14..f6a2eedaa 100644 --- a/mitmproxy/net/tls.py +++ b/mitmproxy/net/tls.py @@ -289,7 +289,7 @@ class ClientHello: ) @property - def cipher_suites(self): + def cipher_suites(self) -> List[int]: return self._client_hello.cipher_suites.cipher_suites @property