File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
py/selenium/webdriver/common/bidi Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1919import math
2020from dataclasses import dataclass
2121from functools import singledispatchmethod
22- from typing import Any , Optional , List , Tuple
22+ from typing import Any , Optional
2323
2424from selenium .common .exceptions import WebDriverException
2525from selenium .webdriver .common .bidi .common import command_builder
@@ -257,7 +257,7 @@ def _(self, value: set):
257257 @_type .register
258258 def _ (self , value : list ):
259259 return {"type" : "array" , "value" : [self .script .convert_to_local_value (item ) for item in value ]}
260-
260+
261261 @_type .register
262262 def _ (self , value : tuple ):
263263 return {"type" : "array" , "value" : [self .script .convert_to_local_value (item ) for item in value ]}
You can’t perform that action at this time.
0 commit comments