Skip to content

Commit

Permalink
Fix type annotation in _sign_in_success
Browse files Browse the repository at this point in the history
  • Loading branch information
smkent committed Nov 1, 2023
1 parent 954033d commit ddfece5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion safeway_coupons/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def _chrome_driver(self, headless: bool = True) -> Iterator[uc.Chrome]:
driver.quit()

@staticmethod
def _sign_in_success(driver: ec.AnyDriver) -> bool:
def _sign_in_success(driver: uc.AnyDriver) -> bool:
try:
element = driver.find_element(
By.XPATH, '//span [contains(@class, "user-greeting")]'
Expand Down

0 comments on commit ddfece5

Please sign in to comment.