Skip to content

Commit fcb8349

Browse files
committed
[py]: Remove invalid argument calls to _extract_and_check until removed
1 parent a5423d9 commit fcb8349

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

py/selenium/webdriver/chromium/service.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
17+
import typing
1818
from typing import List
1919

2020
from selenium.webdriver.common import service
@@ -29,10 +29,10 @@ def __init__(
2929
self,
3030
executable_path: str,
3131
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 = "",
3636
):
3737
"""
3838
Creates a new instance of the Service

0 commit comments

Comments
 (0)