Skip to content

Commit 119320a

Browse files
authored
[py] Fix import for type hint (#15817)
1 parent c97f791 commit 119320a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
from typing import Generator, Optional
17+
18+
from collections.abc import Generator
19+
from typing import Optional
1820

1921

2022
def command_builder(method: str, params: Optional[dict] = None) -> Generator[dict, dict, dict]:

0 commit comments

Comments
 (0)