Skip to content

Commit

Permalink
fix Missing return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
bmos committed Mar 1, 2024
1 parent df3db34 commit 9561710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requestium/requestium_chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def is_cookie_in_driver(self, cookie: dict[str]) -> bool:
)
if name_matches and value_matches and domain_matches:
return True
return False
return False

def ensure_element_by_id(self, selector: str, state: str = "present", timeout: float = None) -> WebElement:
return self.ensure_element(By.ID, selector, state, timeout)
Expand Down

0 comments on commit 9561710

Please sign in to comment.