Skip to content

Commit 2502e96

Browse files
committed
[py] fix linter failure
1 parent 5bc0c2c commit 2502e96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py/selenium/webdriver/common/selenium_manager.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ def driver_location(self, browser: str) -> str:
6767
if browser not in allowed:
6868
raise SeleniumManagerException(f"{browser} is not a valid browser. Choose one of: {allowed}")
6969

70-
if browser == 'ie':
71-
browser = 'iexplorer'
70+
if browser == "ie":
71+
browser = "iexplorer"
7272

7373
binary, flag, browser = str(self.get_binary()), "--browser", browser
7474
result = self.run((binary, flag, browser))

0 commit comments

Comments
 (0)