From ae7b96bf4c297b42998f95447e7441cfd8269296 Mon Sep 17 00:00:00 2001 From: sandeepsuryaprasad Date: Tue, 27 Jun 2023 07:26:52 +0530 Subject: [PATCH] [py] removed un-necessary __init__ from driver_finder.py, selenium_manager.py --- py/selenium/webdriver/common/driver_finder.py | 3 --- py/selenium/webdriver/common/selenium_manager.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/py/selenium/webdriver/common/driver_finder.py b/py/selenium/webdriver/common/driver_finder.py index da3a87cd05bfe..2472b3bae6786 100644 --- a/py/selenium/webdriver/common/driver_finder.py +++ b/py/selenium/webdriver/common/driver_finder.py @@ -32,9 +32,6 @@ class DriverFinder: This implementation is still in beta, and may change. """ - def __init__(self) -> None: - pass - @staticmethod def get_path(service: Service, options: BaseOptions) -> str: path = shutil.which(service.path) diff --git a/py/selenium/webdriver/common/selenium_manager.py b/py/selenium/webdriver/common/selenium_manager.py index 8a1b0bb6f4afb..f585585e87641 100644 --- a/py/selenium/webdriver/common/selenium_manager.py +++ b/py/selenium/webdriver/common/selenium_manager.py @@ -33,9 +33,6 @@ class SeleniumManager: This implementation is still in beta, and may change. """ - def __init__(self) -> None: - pass - @staticmethod def get_binary() -> Path: """Determines the path of the correct Selenium Manager binary.