File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2875,7 +2875,7 @@ async def asyncSetUp(self):
2875
2875
async def http_post (self , path , data = None ):
2876
2876
# Note, the connection to the mock server needs to be closed after
2877
2877
# each request because the server is single threaded.
2878
- ctx = get_ssl_context (
2878
+ ctx : ssl . SSLContext = get_ssl_context (
2879
2879
CLIENT_PEM , # certfile
2880
2880
None , # passphrase
2881
2881
CA_PEM , # ca_certs
Original file line number Diff line number Diff line change @@ -2857,7 +2857,7 @@ def setUp(self):
2857
2857
def http_post (self , path , data = None ):
2858
2858
# Note, the connection to the mock server needs to be closed after
2859
2859
# each request because the server is single threaded.
2860
- ctx = get_ssl_context (
2860
+ ctx : ssl . SSLContext = get_ssl_context (
2861
2861
CLIENT_PEM , # certfile
2862
2862
None , # passphrase
2863
2863
CA_PEM , # ca_certs
You can’t perform that action at this time.
0 commit comments