Remove platform const in co2signal coordinator (#100592)

pull/100598/head^2
Jan-Philipp Benecke 2023-09-19 12:44:09 +02:00 committed by GitHub
parent 11a90016d0
commit 2b8690d8bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -9,7 +9,7 @@ from typing import Any, cast
import CO2Signal
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_API_KEY, CONF_LATITUDE, CONF_LONGITUDE, Platform
from homeassistant.const import CONF_API_KEY, CONF_LATITUDE, CONF_LONGITUDE
from homeassistant.core import HomeAssistant
from homeassistant.exceptions import ConfigEntryAuthFailed
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed
@ -18,7 +18,6 @@ from .const import CONF_COUNTRY_CODE, DOMAIN
from .exceptions import APIRatelimitExceeded, CO2Error, InvalidAuth, UnknownError
from .models import CO2SignalResponse
PLATFORMS = [Platform.SENSOR]
_LOGGER = logging.getLogger(__name__)