Skip to content

Commit

Permalink
[py]: Fix types on debugger_address incorrectly being str
Browse files Browse the repository at this point in the history
  • Loading branch information
symonk committed Jun 17, 2022
1 parent 9fac7d5 commit 4fb6736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/selenium/webdriver/chromium/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def binary_location(self, value: str) -> None:
self._binary_location = value

@property
def debugger_address(self: str) -> str:
def debugger_address(self) -> str:
"""
:Returns: The address of the remote devtools instance
"""
Expand Down

0 comments on commit 4fb6736

Please sign in to comment.