Skip to content

Commit d90f7ba

Browse files
committed
[py] Fix type of ignore_proxy in ChromiumRemoteconnection
1 parent fb6ef09 commit d90f7ba

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

py/selenium/webdriver/chromium/remote_connection.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
import typing
1817

1918
from selenium.webdriver.remote.remote_connection import RemoteConnection
2019

@@ -26,7 +25,7 @@ def __init__(
2625
vendor_prefix: str,
2726
browser_name: str,
2827
keep_alive: bool = True,
29-
ignore_proxy: typing.Optional[bool] = False,
28+
ignore_proxy: bool = False,
3029
) -> None:
3130
super().__init__(remote_server_addr, keep_alive, ignore_proxy=ignore_proxy)
3231
self.browser_name = browser_name

0 commit comments

Comments
 (0)