Add empty line after module docstring [d-f] (#112698)
parent
d7e7dc96cc
commit
0e3945ca6c
|
@ -1,4 +1,5 @@
|
|||
"""Platform for the Daikin AC."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for the Daikin HVAC."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Config flow for the Daikin platform."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for Daikin AC sensors."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Callable
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for Daikin AirBase zones."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for Danfoss Air HRV."""
|
||||
|
||||
from datetime import timedelta
|
||||
import logging
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for the for Danfoss Air HRV binary sensors."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from pydanfossair.commands import ReadCommand
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for the for Danfoss Air HRV sensors."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for the for Danfoss Air HRV sswitches."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Component to allow setting date as platforms."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import date, timedelta
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Component to allow setting date/time as platforms."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import UTC, datetime, timedelta
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for DD-WRT routers."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from http import HTTPStatus
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""The Remote Python Debugger integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from asyncio import Event, get_running_loop
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for deCONZ alarm control panel devices."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from pydeconz.models.alarm_system import AlarmSystemArmAction
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for deCONZ binary sensors."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Callable
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for deCONZ climate devices."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for deCONZ covers."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any, cast
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Provides device automations for deconz events."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import voluptuous as vol
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Diagnostics support for deCONZ."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Errors for the deCONZ component."""
|
||||
|
||||
from homeassistant.exceptions import HomeAssistantError
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for deCONZ fans."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for deCONZ lights."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any, TypedDict, TypeVar
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Describe deCONZ logbook events."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Callable
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for deCONZ siren."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Utilities for deCONZ integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for Decora dimmers."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Callable
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Interfaces with the myLeviton API for Decora Smart WiFi products."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Component providing default configuration for new users."""
|
||||
|
||||
from homeassistant.core import HomeAssistant
|
||||
from homeassistant.helpers import config_validation as cv
|
||||
from homeassistant.helpers.typing import ConfigType
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for De Lijn (Flemish public transport) information."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import datetime
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""The Deluge integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Config flow for the Deluge integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Mapping
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Data update coordinator for the Deluge integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import timedelta
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for monitoring the Deluge BitTorrent client API."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Callable
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for setting the Deluge BitTorrent client in Pause."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Set up the demo environment that mimics interaction with devices."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers fake air quality data."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.components.air_quality import AirQualityEntity
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that has two fake alarm control panels."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import datetime
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that has two fake binary sensors."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.components.binary_sensor import (
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake button entity."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.components import persistent_notification
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that has two fake calendars."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import datetime
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo camera platform that has a fake camera."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from pathlib import Path
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake climate device."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Config flow to configure demo component."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform for the cover component."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import datetime
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake Date entity."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import date
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake date/time entity."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import UTC, datetime
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform for the Device tracker component."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import random
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake event entity."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.components.event import EventDeviceClass, EventEntity
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo fan platform that has a fake fan."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform for the geolocation component."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import timedelta
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake humidifier device."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for the demo image processing."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.components.image_processing import (
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo light platform that implements lights."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import random
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo lock platform that implements locks."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for a demo mailbox."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from hashlib import sha1
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo implementation of the media player."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import datetime
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo notification service."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake Number entity."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.components.number import NumberDeviceClass, NumberEntity, NumberMode
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that has two fake remotes."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Iterable
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake select entity."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.components.select import SelectEntity
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that has a couple of fake sensors."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake siren device."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for the demo for speech-to-text service."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import AsyncIterable
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that has two fake switches."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake text entity."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.components.text import TextEntity, TextMode
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake time entity."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import time
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for the demo for text-to-speech service."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import os
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers fake update entities."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform for the vacuum component."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import datetime
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers a fake water heater device."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Demo platform that offers fake meteorological data."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for Denon Network Receivers."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Config flow to configure Denon AVR receivers using their HTTP interface."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for Denon AVR receivers using their HTTP interface."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Awaitable, Callable, Coroutine
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Code to handle a DenonAVR receiver."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Callable
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""The Derivative integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.config_entries import ConfigEntry
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Config flow for Derivative integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Mapping
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Numeric derivative of data coming from a source sensor over time."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""The Devialet integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from devialet import DevialetApi
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for Devialet Phantom speakers."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Constants for the Devialet integration."""
|
||||
|
||||
from typing import Final
|
||||
|
||||
DOMAIN: Final = "devialet"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Class representing a Devialet update coordinator."""
|
||||
|
||||
from datetime import timedelta
|
||||
import logging
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Diagnostics support for Devialet."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support for Devialet speakers."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from devialet.const import NORMAL_INPUTS
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Helpers for device automations."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Device action validator."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any, Protocol
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Validate device conditions."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import TYPE_CHECKING, Any, Protocol
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Device automation helpers for entity."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import voluptuous as vol
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Device automation exceptions."""
|
||||
|
||||
from homeassistant.exceptions import HomeAssistantError
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Helpers for device oriented automations."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import cast
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Device automation helpers for toggle entity."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import voluptuous as vol
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Offer device oriented automation."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any, Protocol
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Support to turn on lights based on the states."""
|
||||
|
||||
from datetime import timedelta
|
||||
import logging
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Provide functionality to keep track of devices."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from functools import partial
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Code to set up a device tracker platform using a config entry."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Device tracker constants."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import timedelta
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Provides device automations for Device tracker."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import voluptuous as vol
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Provides device automations for Device Tracker."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from operator import attrgetter
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Legacy device tracker classes."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""The devolo_home_control integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue