Skip to content

Commit

Permalink
Cleaned up code
Browse files Browse the repository at this point in the history
  • Loading branch information
briis committed Sep 18, 2023
1 parent 42b9f54 commit aedd83a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions custom_components/weatherflow_forecast/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""WeatherFlow Forecast Platform."""
from __future__ import annotations

from collections.abc import Callable
from datetime import timedelta
import logging
from random import randrange
Expand All @@ -16,12 +15,11 @@
)

from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_ID, EVENT_CORE_CONFIG_UPDATE, Platform
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
from homeassistant.exceptions import HomeAssistantError
from homeassistant.helpers.aiohttp_client import async_get_clientsession
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed
from homeassistant.util import dt as dt_util

from .const import (
DOMAIN,
Expand Down

0 comments on commit aedd83a

Please sign in to comment.