Skip to content

Commit

Permalink
[py] fix linter failure
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Dec 2, 2022
1 parent 5bc0c2c commit 2502e96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/selenium/webdriver/common/selenium_manager.py
Expand Up @@ -67,8 +67,8 @@ def driver_location(self, browser: str) -> str:
if browser not in allowed:
raise SeleniumManagerException(f"{browser} is not a valid browser. Choose one of: {allowed}")

if browser == 'ie':
browser = 'iexplorer'
if browser == "ie":
browser = "iexplorer"

binary, flag, browser = str(self.get_binary()), "--browser", browser
result = self.run((binary, flag, browser))
Expand Down

0 comments on commit 2502e96

Please sign in to comment.