Skip to content

Commit

Permalink
fix: add logger to debug rest api #16
Browse files Browse the repository at this point in the history
  • Loading branch information
chilikla authored Nov 26, 2024
1 parent 7b6f810 commit 0d4831c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/yerushamayim/data_coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def _extract_data(self) -> YerushamayimData:
_LOGGER.debug("Raw REST API data: %s", self.rest_api.data)

rest_data = {}
for row in soup.find_all('tr'):
for row in BeautifulSoup.find_all('tr'):
_LOGGER.debug("Processing row: %s", row)
columns = row.find_all('td')
if len(columns) >= 2:
Expand Down

0 comments on commit 0d4831c

Please sign in to comment.