From b14eeca99b8100c052fad729bc618aa503fec21c Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 12 Jan 2022 17:59:05 +0100 Subject: [PATCH] Revert "Weather units: Buienradar (1.2/4) (#61470)" (#63843) This reverts commit b5d55ce7bc8df13732d59a8975371feb291d5779. --- homeassistant/components/buienradar/weather.py | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/homeassistant/components/buienradar/weather.py b/homeassistant/components/buienradar/weather.py index d30947b295f..aa336d3929c 100644 --- a/homeassistant/components/buienradar/weather.py +++ b/homeassistant/components/buienradar/weather.py @@ -37,16 +37,7 @@ from homeassistant.components.weather import ( WeatherEntity, ) from homeassistant.config_entries import ConfigEntry -from homeassistant.const import ( - CONF_LATITUDE, - CONF_LONGITUDE, - CONF_NAME, - LENGTH_METERS, - LENGTH_MILLIMETERS, - PRESSURE_HPA, - SPEED_METERS_PER_SECOND, - TEMP_CELSIUS, -) +from homeassistant.const import CONF_LATITUDE, CONF_LONGITUDE, CONF_NAME, TEMP_CELSIUS from homeassistant.core import HomeAssistant from homeassistant.helpers.entity_platform import AddEntitiesCallback @@ -121,10 +112,6 @@ class BrWeather(WeatherEntity): """Representation of a weather condition.""" _attr_temperature_unit = TEMP_CELSIUS - _attr_pressure_unit = PRESSURE_HPA - _attr_visibility_unit = LENGTH_METERS - _attr_wind_speed_unit = SPEED_METERS_PER_SECOND - _attr_precipitation_unit = LENGTH_MILLIMETERS def __init__(self, data, config, coordinates): """Initialize the platform with a data instance and station name."""