Skip to content

Commit

Permalink
Merge pull request #19 from MaxxRK/deepsource-transform-055f8d75
Browse files Browse the repository at this point in the history
style: format code with Black and isort
  • Loading branch information
MaxxRK authored May 31, 2024
2 parents 70a585c + a16f3ec commit 5b6ada5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions vanguard/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@ def find_login_state(self):
pass
try:
self.page.wait_for_selector(
"a:has-text('I don\\'t see this in my app')",
timeout=5000,
)
"a:has-text('I don\\'t see this in my app')",
timeout=5000,
)
mode = 4
except PlaywrightTimeoutError:
pass
Expand Down Expand Up @@ -210,8 +210,8 @@ def login(self, username, password, last_four):
sleep(random.uniform(1, 3))
self.page.query_selector("#username-password-submit-btn-1").click()
except PlaywrightTimeoutError:
pass
if login_state in [2,3,4]:
pass
if login_state in [2, 3, 4]:
try:
print("trying to find the i dont see this")
self.page.wait_for_selector(
Expand Down

0 comments on commit 5b6ada5

Please sign in to comment.