Skip to content

Commit

Permalink
fixed type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalebu committed Sep 20, 2023
1 parent 11196d5 commit b7a1d25
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions alright/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -730,8 +730,10 @@ def get_last_message_received(self, query: str):

list_of_messages = self.wait.until(
EC.presence_of_all_elements_located(
By.XPATH,
'//div[@id="main"]/div[3]/div[1]/div[2]/div[3]/child::div[contains(@class,"message-in")]',
(
By.XPATH,
'//div[@id="main"]/div[3]/div[1]/div[2]/div[3]/child::div[contains(@class,"message-in")]',
)
)
)

Expand Down

0 comments on commit b7a1d25

Please sign in to comment.