From 9561710f6e46433e0c951885aafe31b89413e0b0 Mon Sep 17 00:00:00 2001 From: Wil Thieme Date: Thu, 29 Feb 2024 21:13:29 -0500 Subject: [PATCH] fix Missing return statement --- requestium/requestium_chrome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requestium/requestium_chrome.py b/requestium/requestium_chrome.py index f9de73a..3e692bd 100644 --- a/requestium/requestium_chrome.py +++ b/requestium/requestium_chrome.py @@ -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)