Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

Commit

Permalink
Fix for new table format in source again
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed Mar 19, 2020
1 parent e317be7 commit 28cf9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/coronavirus_hessen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async def async_get_data():
# Counties
for row in rows[1:-1]:
line = row.select("td")
if len(line) != 2:
if len(line) != 3:
continue

try:
Expand Down

0 comments on commit 28cf9a9

Please sign in to comment.