Skip to content

Commit a964b2b

Browse files
committed
remove type hints
1 parent 4bec899 commit a964b2b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

unit_tests/test_tlslite_ssl_key_log_file.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import tempfile
77
from socket import socket, AF_INET, SOCK_STREAM
88
import os
9-
from typing import Dict, List
109

1110
import unittest
1211

@@ -22,7 +21,7 @@ def create_connection(hostname='www.example.com', port=443, settings=HandshakeSe
2221
return connection
2322

2423

25-
def validate_log_file(log_file_name, labels: Dict[str, List[str]]):
24+
def validate_log_file(log_file_name, labels):
2625
"""
2726
TLS1.3 labels
2827
------------------

0 commit comments

Comments
 (0)