Skip to content

Commit

Permalink
[py]: Remove invalid argument calls to _extract_and_check until rem…
Browse files Browse the repository at this point in the history
…oved
  • Loading branch information
symonk committed Oct 3, 2022
1 parent a5423d9 commit fcb8349
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions py/selenium/webdriver/chromium/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

import typing
from typing import List

from selenium.webdriver.common import service
Expand All @@ -29,10 +29,10 @@ def __init__(
self,
executable_path: str,
port: int = 0,
service_args: List[str] = None,
log_path: str = None,
env: dict = None,
start_error_message: str = None,
service_args: typing.Optional[List[str]] = None,
log_path: typing.Optional[typing.Any[str, int]] = None,
env: typing.Optional[typing.Dict[typing.Any, typing.Any]] = None,
start_error_message: str = "",
):
"""
Creates a new instance of the Service
Expand Down

0 comments on commit fcb8349

Please sign in to comment.