Skip to content

Commit 7c40c11

Browse files
[py] removed un-necessary __init__ from driver_finder.py and selenium_manager.py (#12265)
[py] removed un-necessary __init__ from driver_finder.py, selenium_manager.py Co-authored-by: Diego Molina <diemol@users.noreply.github.com>
1 parent 83ec0fa commit 7c40c11

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

py/selenium/webdriver/common/driver_finder.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ class DriverFinder:
3232
This implementation is still in beta, and may change.
3333
"""
3434

35-
def __init__(self) -> None:
36-
pass
37-
3835
@staticmethod
3936
def get_path(service: Service, options: BaseOptions) -> str:
4037
path = shutil.which(service.path)

py/selenium/webdriver/common/selenium_manager.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ class SeleniumManager:
3333
This implementation is still in beta, and may change.
3434
"""
3535

36-
def __init__(self) -> None:
37-
pass
38-
3936
@staticmethod
4037
def get_binary() -> Path:
4138
"""Determines the path of the correct Selenium Manager binary.

0 commit comments

Comments
 (0)