From 66db97bea7205b54038bdc7fb95e0ffb9f6fdebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Fri, 20 Mar 2020 21:22:03 +0100 Subject: [PATCH] Fix typo --- custom_components/coronavirus_hessen/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/coronavirus_hessen/__init__.py b/custom_components/coronavirus_hessen/__init__.py index adce436..ba179df 100644 --- a/custom_components/coronavirus_hessen/__init__.py +++ b/custom_components/coronavirus_hessen/__init__.py @@ -88,7 +88,7 @@ async def async_get_data(): else: cases = 0 - if len(deaths_str) and death_str != "-": + if len(deaths_str) and deaths_str != "-": deaths = int(deaths_str) else: deaths = 0