Add empty line after module docstring [g-i] (#112699)

This commit is contained in:
Marc Mueller 2024-03-08 14:52:48 +01:00 committed by GitHub
parent ff3a801936
commit 8809d3aa88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
627 changed files with 627 additions and 0 deletions

View file

@ -1,4 +1,5 @@
"""The IntelliFire integration."""
from __future__ import annotations
from aiohttp import ClientConnectionError

View file

@ -1,4 +1,5 @@
"""Support for IntelliFire Binary Sensors."""
from __future__ import annotations
from collections.abc import Callable

View file

@ -1,4 +1,5 @@
"""Intellifire Climate Entities."""
from __future__ import annotations
from typing import Any

View file

@ -1,4 +1,5 @@
"""Config flow for IntelliFire integration."""
from __future__ import annotations
from collections.abc import Mapping

View file

@ -1,4 +1,5 @@
"""Constants for the IntelliFire integration."""
from __future__ import annotations
import logging

View file

@ -1,4 +1,5 @@
"""The IntelliFire integration."""
from __future__ import annotations
import asyncio

View file

@ -1,4 +1,5 @@
"""Platform for shared base classes for sensors."""
from __future__ import annotations
from homeassistant.helpers.entity import EntityDescription

View file

@ -1,4 +1,5 @@
"""Fan definition for Intellifire."""
from __future__ import annotations
from collections.abc import Awaitable, Callable

View file

@ -1,4 +1,5 @@
"""The IntelliFire Light."""
from __future__ import annotations
from collections.abc import Awaitable, Callable

View file

@ -1,4 +1,5 @@
"""Flame height number sensors."""
from __future__ import annotations
from dataclasses import dataclass

View file

@ -1,4 +1,5 @@
"""Platform for sensor integration."""
from __future__ import annotations
from collections.abc import Callable

View file

@ -1,4 +1,5 @@
"""Define switch func."""
from __future__ import annotations
from collections.abc import Awaitable, Callable