Skip to content

Commit

Permalink
Add empty line after module docstring [a-d] (#112697)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p authored Mar 8, 2024
1 parent 38adfbf commit ff3a801
Show file tree
Hide file tree
Showing 655 changed files with 655 additions and 0 deletions.
1 change: 1 addition & 0 deletions homeassistant/components/abode/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for the Abode Security System."""

from __future__ import annotations

from dataclasses import dataclass, field
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/abode/alarm_control_panel.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Abode Security System alarm control panels."""

from __future__ import annotations

from jaraco.abode.devices.alarm import Alarm as AbodeAl
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/abode/binary_sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Abode Security System binary sensors."""

from __future__ import annotations

from typing import cast
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/abode/camera.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Abode Security System cameras."""

from __future__ import annotations

from datetime import timedelta
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/abode/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Config flow for the Abode Security System component."""

from __future__ import annotations

from collections.abc import Mapping
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/abode/cover.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Abode Security System covers."""

from typing import Any

from jaraco.abode.devices.cover import Cover as AbodeCV
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/abode/light.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Abode Security System lights."""

from __future__ import annotations

from math import ceil
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/abode/lock.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for the Abode Security System locks."""

from typing import Any

from jaraco.abode.devices.lock import Lock as AbodeLK
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/abode/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Abode Security System sensors."""

from __future__ import annotations

from collections.abc import Callable
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/abode/switch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Abode Security System switches."""

from __future__ import annotations

from typing import Any, cast
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/accuweather/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The AccuWeather component."""

from __future__ import annotations

from asyncio import timeout
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/accuweather/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Adds config flow for AccuWeather."""

from __future__ import annotations

from asyncio import timeout
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/accuweather/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants for AccuWeather integration."""

from __future__ import annotations

from typing import Final
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/accuweather/diagnostics.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Diagnostics support for AccuWeather."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/accuweather/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for the AccuWeather service."""

from __future__ import annotations

from collections.abc import Callable
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/accuweather/system_health.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide info to system health."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/accuweather/weather.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for the AccuWeather service."""

from __future__ import annotations

from typing import cast
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/acer_projector/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Use serial protocol of Acer projector to obtain state of the projector."""

from __future__ import annotations

from typing import Final
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/acer_projector/switch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Use serial protocol of Acer projector to obtain state of the projector."""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/acmeda/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The Rollease Acmeda Automate integration."""

from homeassistant.config_entries import ConfigEntry
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/acmeda/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Base class for Acmeda Roller Blinds."""

from __future__ import annotations

import aiopulse
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/acmeda/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Config flow for Rollease Acmeda Automate Pulse Hub."""

from __future__ import annotations

from asyncio import timeout
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/acmeda/cover.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Acmeda Roller Blinds."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/acmeda/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Errors for the Acmeda Pulse component."""

from homeassistant.exceptions import HomeAssistantError


Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/acmeda/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Helper functions for Acmeda Pulse."""

from __future__ import annotations

from aiopulse import Roller
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/acmeda/hub.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Code to handle a Pulse Hub."""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/acmeda/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Acmeda Roller Blind Batteries."""

from __future__ import annotations

from homeassistant.components.sensor import SensorDeviceClass, SensorEntity
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/actiontec/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Actiontec MI424WR (Verizon FIOS) routers."""

from __future__ import annotations

import re
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/actiontec/device_tracker.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Actiontec MI424WR (Verizon FIOS) routers."""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/actiontec/model.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Model definitions for Actiontec MI424WR (Verizon FIOS) routers."""

from dataclasses import dataclass


Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/adax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The Adax integration."""

from __future__ import annotations

from homeassistant.config_entries import ConfigEntry
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/adax/climate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Adax wifi-enabled home heaters."""

from __future__ import annotations

from typing import Any, cast
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/adax/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Config flow for Adax integration."""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/adax/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants for the Adax integration."""

from typing import Final

ACCOUNT_ID: Final = "account_id"
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/adguard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for AdGuard Home."""

from __future__ import annotations

from adguardhome import AdGuardHome, AdGuardHomeConnectionError
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/adguard/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Config flow to configure the AdGuard Home integration."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/adguard/entity.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""AdGuard Home base entity."""

from __future__ import annotations

from adguardhome import AdGuardHome, AdGuardHomeError
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/adguard/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for AdGuard Home sensors."""

from __future__ import annotations

from collections.abc import Callable, Coroutine
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/adguard/switch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for AdGuard Home switches."""

from __future__ import annotations

from collections.abc import Callable, Coroutine
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/ads/binary_sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for ADS binary sensors."""

from __future__ import annotations

import pyads
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/ads/cover.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for ADS covers."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/ads/light.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for ADS light sources."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/ads/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for ADS sensors."""

from __future__ import annotations

import voluptuous as vol
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/ads/switch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for ADS switch platform."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Advantage Air climate integration."""

from datetime import timedelta
import logging

Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/binary_sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Binary Sensor platform for Advantage Air integration."""

from __future__ import annotations

from homeassistant.components.binary_sensor import (
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/climate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Climate platform for Advantage Air integration."""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Config Flow for Advantage Air integration."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/cover.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Cover platform for Advantage Air integration."""

from typing import Any

from homeassistant.components.cover import (
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/diagnostics.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provides diagnostics for Advantage Air."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/entity.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Advantage Air parent entity class."""

from typing import Any

from advantage_air import ApiError
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/light.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Light platform for Advantage Air integration."""

from typing import Any

from homeassistant.components.light import ATTR_BRIGHTNESS, ColorMode, LightEntity
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The Advantage Air integration models."""

from __future__ import annotations

from dataclasses import dataclass
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sensor platform for Advantage Air integration."""

from __future__ import annotations

from decimal import Decimal
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/advantage_air/switch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Switch platform for Advantage Air integration."""

from typing import Any

from homeassistant.components.switch import SwitchDeviceClass, SwitchEntity
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/aemet/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Config flow for AEMET OpenData."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/aemet/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constant values for the AEMET OpenData component."""

from __future__ import annotations

from aemet_opendata.const import (
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/aemet/coordinator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Weather data coordinator for the AEMET OpenData service."""

from __future__ import annotations

from asyncio import timeout
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/aemet/diagnostics.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for the AEMET OpenData diagnostics."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/aemet/entity.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Entity classes for the AEMET OpenData integration."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/aemet/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for the AEMET OpenData service."""

from __future__ import annotations

from collections.abc import Callable
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/aftership/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The AfterShip integration."""

from __future__ import annotations

from pyaftership import AfterShip, AfterShipException
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/aftership/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Config flow for AfterShip integration."""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/aftership/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants for the Aftership integration."""

from __future__ import annotations

from datetime import timedelta
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/aftership/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for non-delivered packages recorded in AfterShip."""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/agent_dvr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Agent."""

from agent import AgentError
from agent.a import Agent

Expand Down
Loading

0 comments on commit ff3a801

Please sign in to comment.