Skip to content

Commit e3e98e0

Browse files
testing
1 parent d7c0708 commit e3e98e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py/selenium/webdriver/common/bidi/script.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import math
2020
from dataclasses import dataclass
2121
from functools import singledispatchmethod
22-
from typing import Any, Optional, List, Tuple
22+
from typing import Any, Optional
2323

2424
from selenium.common.exceptions import WebDriverException
2525
from 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]}

0 commit comments

Comments
 (0)