Skip to content

Commit 9f938ae

Browse files
authored
[py] Fix type error for attribute in remote_connection.py (#15810)
1 parent 78955da commit 9f938ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/remote/remote_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ class RemoteConnection:
145145
https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
146146
"""
147147

148-
browser_name = None
148+
browser_name: Optional[str] = None
149149
# Keep backward compatibility for AppiumConnection - https://github.com/SeleniumHQ/selenium/issues/14694
150150
import os
151151
import socket

0 commit comments

Comments
 (0)