diff --git a/custom_components/pirateweather/weather.py b/custom_components/pirateweather/weather.py index 1cf76c6..733145c 100644 --- a/custom_components/pirateweather/weather.py +++ b/custom_components/pirateweather/weather.py @@ -291,7 +291,7 @@ def native_visibility(self): """Return the visibility.""" visibility = self._weather_coordinator.data.currently().d.get("visibility") - eturn round(visibility, 2) + return round(visibility, 2) @property def condition(self):