From 2502e9624bc4da56f5cc04675a5cbb60a4e0c555 Mon Sep 17 00:00:00 2001 From: titusfortner Date: Fri, 2 Dec 2022 15:23:19 -0600 Subject: [PATCH] [py] fix linter failure --- py/selenium/webdriver/common/selenium_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py/selenium/webdriver/common/selenium_manager.py b/py/selenium/webdriver/common/selenium_manager.py index 3f95d309b95e0..7b2219038d0c6 100644 --- a/py/selenium/webdriver/common/selenium_manager.py +++ b/py/selenium/webdriver/common/selenium_manager.py @@ -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))