diff --git a/fidelityAPI.py b/fidelityAPI.py index 7760468..5fca3c5 100755 --- a/fidelityAPI.py +++ b/fidelityAPI.py @@ -118,7 +118,7 @@ def login(self, username: str, password: str, totp_secret: str = None) -> bool: self.page.goto( "https://digital.fidelity.com/prgw/digital/login/full-page", timeout=60000, - ) + ) # Login page self.page.get_by_label("Username", exact=True).click() @@ -131,7 +131,7 @@ def login(self, username: str, password: str, totp_secret: str = None) -> bool: self.page.wait_for_url( "https://digital.fidelity.com/ftgw/digital/portfolio/summary", timeout=30000, - ) + ) # Got to the summary page, return True return (True, True) except PlaywrightTimeoutError: