Skip to content

Commit

Permalink
[py] fix bug in using SE_MANAGER_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Nov 2, 2023
1 parent e7d4e26 commit 186b03a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/selenium/webdriver/common/selenium_manager.py
Expand Up @@ -41,7 +41,7 @@ def get_binary() -> Path:
:Returns: The Selenium Manager executable location
"""

if path := os.getenv("SE_MANAGER_PATH") is not None:
if (path := os.getenv("SE_MANAGER_PATH")) is not None:
return Path(path)
else:
platform = sys.platform
Expand Down

0 comments on commit 186b03a

Please sign in to comment.