Skip to content

Commit

Permalink
Invoking method instead of property
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed May 10, 2024
1 parent d3687d8 commit ca3b5ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/selenium/webdriver/common/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def add_argument(self, argument) -> None:
def ignore_local_proxy_environment_variables(self) -> None:
"""By calling this you will ignore HTTP_PROXY and HTTPS_PROXY from
being picked up and used."""
super()._ignore_local_proxy = True
super().ignore_local_proxy_environment_variables()

def to_capabilities(self):
return self._caps
Expand Down

0 comments on commit ca3b5ae

Please sign in to comment.