File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
py/selenium/webdriver/chromium Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 14
14
# KIND, either express or implied. See the License for the
15
15
# specific language governing permissions and limitations
16
16
# under the License.
17
-
17
+ import typing
18
18
from typing import List
19
19
20
20
from selenium .webdriver .common import service
@@ -29,10 +29,10 @@ def __init__(
29
29
self ,
30
30
executable_path : str ,
31
31
port : int = 0 ,
32
- service_args : List [str ] = None ,
33
- log_path : str = None ,
34
- env : dict = None ,
35
- start_error_message : str = None ,
32
+ service_args : typing . Optional [ List [str ] ] = None ,
33
+ log_path : typing . Optional [ typing . Any [ str , int ]] = None ,
34
+ env : typing . Optional [ typing . Dict [ typing . Any , typing . Any ]] = None ,
35
+ start_error_message : str = "" ,
36
36
):
37
37
"""
38
38
Creates a new instance of the Service
You can’t perform that action at this time.
0 commit comments