Skip to content

Commit 186b03a

Browse files
committed
[py] fix bug in using SE_MANAGER_PATH
1 parent e7d4e26 commit 186b03a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/common/selenium_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def get_binary() -> Path:
4141
:Returns: The Selenium Manager executable location
4242
"""
4343

44-
if path := os.getenv("SE_MANAGER_PATH") is not None:
44+
if (path := os.getenv("SE_MANAGER_PATH")) is not None:
4545
return Path(path)
4646
else:
4747
platform = sys.platform

0 commit comments

Comments
 (0)