Add more type hints (#4754)

* Add more type hints

* Update mitmproxy/net/tls.py

Co-authored-by: Thomas Kriechbaumer <Kriechi@users.noreply.github.com>

Co-authored-by: Maximilian Hils <github@maximilianhils.com>
Co-authored-by: Thomas Kriechbaumer <Kriechi@users.noreply.github.com>
This commit is contained in:
Povilas Balciunas 2021-08-18 14:24:36 +03:00 committed by GitHub
parent 92518f3b67
commit b36ce70ead
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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