File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
selenium/webdriver/common/bidi Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ py_wheel(
339339 python_requires = ">=3.9" ,
340340 python_tag = "py3" ,
341341 requires = [
342- "urllib3[socks]~ =2.5.0" ,
342+ "urllib3[socks]> =2.5.0,<3 .0" ,
343343 "trio~=0.30.0" ,
344344 "trio-websocket~=0.12.2" ,
345345 "certifi>=2025.6.15" ,
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ classifiers = [
2626 " Programming Language :: Python :: 3.13" ,
2727 ]
2828dependencies = [
29- " urllib3[socks]~ =2.5.0" ,
29+ " urllib3[socks]> =2.5.0,<3 .0" ,
3030 " trio~=0.30.0" ,
3131 " trio-websocket~=0.12.2" ,
3232 " certifi>=2025.6.15" ,
Original file line number Diff line number Diff line change 1515# specific language governing permissions and limitations
1616# under the License.
1717
18- from typing import Dict , Optional
18+ from typing import Optional
1919
2020from selenium .webdriver .common .bidi .common import command_builder
2121
@@ -77,7 +77,7 @@ def __init__(
7777 self .file = file
7878 self .prompt = prompt
7979
80- def to_dict (self ) -> Dict [str , str ]:
80+ def to_dict (self ) -> dict [str , str ]:
8181 """Convert the UserPromptHandler to a dictionary for BiDi protocol.
8282
8383 Returns:
You can’t perform that action at this time.
0 commit comments