Add empty line after module docstring [n-q] (#112702)

This commit is contained in:
Marc Mueller 2024-03-08 15:04:07 +01:00 committed by GitHub
parent 59a6035d3f
commit 988c71ecc5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
561 changed files with 561 additions and 0 deletions

View File

@ -1,4 +1,5 @@
"""Support for interfacing with NAD receivers through RS-232."""
from __future__ import annotations
from nad_receiver import NADReceiver, NADReceiverTCP, NADReceiverTelnet

View File

@ -1,4 +1,5 @@
"""The Nettigo Air Monitor component."""
from __future__ import annotations
import asyncio

View File

@ -1,4 +1,5 @@
"""Support for the Nettigo Air Monitor service."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Adds config flow for Nettigo Air Monitor."""
from __future__ import annotations
import asyncio

View File

@ -1,4 +1,5 @@
"""Constants for Nettigo Air Monitor integration."""
from __future__ import annotations
from datetime import timedelta

View File

@ -1,4 +1,5 @@
"""Diagnostics support for NAM."""
from __future__ import annotations
from dataclasses import asdict

View File

@ -1,4 +1,5 @@
"""Support for the Nettigo Air Monitor service."""
from __future__ import annotations
from collections.abc import Callable

View File

@ -1,4 +1,5 @@
"""Support for namecheap DNS services."""
from datetime import timedelta
import logging

View File

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

View File

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

View File

@ -1,4 +1,5 @@
"""Provides device triggers for Nanoleaf."""
from __future__ import annotations
import voluptuous as vol

View File

@ -1,4 +1,5 @@
"""Diagnostics support for Nanoleaf."""
from __future__ import annotations
from typing import Any

View File

@ -1,4 +1,5 @@
"""Support for Nanoleaf Lights."""
from __future__ import annotations
import math

View File

@ -1,4 +1,5 @@
"""API for Neato Botvac bound to Home Assistant OAuth."""
from __future__ import annotations
from asyncio import run_coroutine_threadsafe

View File

@ -1,4 +1,5 @@
"""Support for Neato buttons."""
from __future__ import annotations
from pybotvac import Robot

View File

@ -1,4 +1,5 @@
"""Support for loading picture from Neato."""
from __future__ import annotations
from datetime import timedelta

View File

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

View File

@ -1,4 +1,5 @@
"""Base entity for Neato."""
from __future__ import annotations
from pybotvac import Robot

View File

@ -1,4 +1,5 @@
"""Support for Neato botvac connected vacuum cleaners."""
from datetime import timedelta
import logging

View File

@ -1,4 +1,5 @@
"""Support for Neato sensors."""
from __future__ import annotations
from datetime import timedelta

View File

@ -1,4 +1,5 @@
"""Support for Neato Connected Vacuums switches."""
from __future__ import annotations
from datetime import timedelta

View File

@ -1,4 +1,5 @@
"""Support for Neato Connected Vacuums."""
from __future__ import annotations
from datetime import timedelta

View File

@ -1,4 +1,5 @@
"""Support for Nederlandse Spoorwegen public transport."""
from __future__ import annotations
from datetime import datetime, timedelta

View File

@ -1,4 +1,5 @@
"""Support for Ness D8X/D16X devices."""
from collections import namedtuple
import datetime
import logging

View File

@ -1,4 +1,5 @@
"""Support for Ness D8X/D16X alarm panel."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Support for Ness D8X/D16X zone states - represented as binary sensors."""
from __future__ import annotations
from homeassistant.components.binary_sensor import BinarySensorEntity

View File

@ -1,4 +1,5 @@
"""Support for Nest devices."""
from __future__ import annotations
from abc import ABC, abstractmethod

View File

@ -1,4 +1,5 @@
"""Support for Google Nest SDM Cameras."""
from __future__ import annotations
import asyncio

View File

@ -1,4 +1,5 @@
"""Support for Google Nest SDM climate devices."""
from __future__ import annotations
from typing import Any, cast

View File

@ -7,6 +7,7 @@ This configuration flow supports the following:
NestFlowHandler is an implementation of AbstractOAuth2FlowHandler with
some overrides to custom steps inserted in the middle of the flow.
"""
from __future__ import annotations
from collections.abc import Iterable, Mapping

View File

@ -1,4 +1,5 @@
"""Provides device automations for Nest."""
from __future__ import annotations
import voluptuous as vol

View File

@ -1,4 +1,5 @@
"""Support for Google Nest SDM sensors."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""The Netatmo integration."""
from __future__ import annotations
from http import HTTPStatus

View File

@ -1,4 +1,5 @@
"""API for Netatmo bound to HASS OAuth."""
from collections.abc import Iterable
from typing import cast

View File

@ -1,4 +1,5 @@
"""Support for the Netatmo cameras."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Support for Netatmo Smart thermostats."""
from __future__ import annotations
import logging

View File

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

View File

@ -1,4 +1,5 @@
"""Constants used by the Netatmo component."""
from homeassistant.const import Platform
API = "api"

View File

@ -1,4 +1,5 @@
"""Support for Netatmo/Bubendorff covers."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""The Netatmo data handler."""
from __future__ import annotations
from collections import deque

View File

@ -1,4 +1,5 @@
"""Provides device automations for Netatmo."""
from __future__ import annotations
import voluptuous as vol

View File

@ -1,4 +1,5 @@
"""Diagnostics support for Netatmo."""
from __future__ import annotations
from typing import Any

View File

@ -1,4 +1,5 @@
"""Base class for Netatmo entities."""
from __future__ import annotations
from typing import Any

View File

@ -1,4 +1,5 @@
"""Support for Netatmo/Bubendorff fans."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Helper for Netatmo integration."""
from __future__ import annotations
from dataclasses import dataclass

View File

@ -1,4 +1,5 @@
"""Support for the Netatmo camera lights."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Netatmo Media Source Implementation."""
from __future__ import annotations
import datetime as dt

View File

@ -1,4 +1,5 @@
"""Support for the Netatmo climate schedule selector."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Support for the Netatmo sensors."""
from __future__ import annotations
from dataclasses import dataclass

View File

@ -1,4 +1,5 @@
"""Support for Netatmo/BTicino/Legrande switches."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Support gathering system information of hosts which are running netdata."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Support for Netgear routers."""
from __future__ import annotations
from datetime import timedelta

View File

@ -1,4 +1,5 @@
"""Support for Netgear Button."""
from collections.abc import Callable, Coroutine
from dataclasses import dataclass
from typing import Any

View File

@ -1,4 +1,5 @@
"""Config flow to configure the Netgear integration."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Netgear component constants."""
from datetime import timedelta
from homeassistant.const import Platform

View File

@ -1,4 +1,5 @@
"""Support for Netgear routers."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Represent the Netgear router and its devices."""
from __future__ import annotations
from abc import abstractmethod

View File

@ -1,4 +1,5 @@
"""Errors for the Netgear component."""
from homeassistant.exceptions import HomeAssistantError

View File

@ -1,4 +1,5 @@
"""Represent the Netgear router and its devices."""
from __future__ import annotations
import asyncio

View File

@ -1,4 +1,5 @@
"""Support for Netgear routers."""
from __future__ import annotations
from collections.abc import Callable

View File

@ -1,4 +1,5 @@
"""Support for Netgear switches."""
from collections.abc import Callable
from dataclasses import dataclass
from datetime import timedelta

View File

@ -1,4 +1,5 @@
"""Update entities for Netgear devices."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Support for Netgear LTE modems."""
from datetime import timedelta
from aiohttp.cookiejar import CookieJar

View File

@ -1,4 +1,5 @@
"""Support for Netgear LTE binary sensors."""
from __future__ import annotations
from homeassistant.components.binary_sensor import (

View File

@ -1,4 +1,5 @@
"""Config flow for Netgear LTE integration."""
from __future__ import annotations
from typing import Any

View File

@ -1,4 +1,5 @@
"""Support for Netgear LTE notifications."""
from __future__ import annotations
import attr

View File

@ -1,4 +1,5 @@
"""Support for Netgear LTE sensors."""
from __future__ import annotations
from collections.abc import Callable

View File

@ -1,4 +1,5 @@
"""Services for the Netgear LTE integration."""
from typing import TYPE_CHECKING
import voluptuous as vol

View File

@ -1,4 +1,5 @@
"""The Netio switch component."""
from __future__ import annotations
from collections import namedtuple

View File

@ -1,4 +1,5 @@
"""The Network Configuration integration."""
from __future__ import annotations
from ipaddress import IPv4Address, IPv6Address, ip_interface

View File

@ -1,4 +1,5 @@
"""Constants for the network integration."""
from __future__ import annotations
from typing import Final

View File

@ -1,4 +1,5 @@
"""Models helper class for the network integration."""
from __future__ import annotations
from typing import TypedDict

View File

@ -1,4 +1,5 @@
"""Network helper class for the network integration."""
from __future__ import annotations
import logging

View File

@ -1,4 +1,5 @@
"""Network helper class for the network integration."""
from __future__ import annotations
from ipaddress import IPv4Address, IPv6Address, ip_address

View File

@ -1,4 +1,5 @@
"""The Network Configuration integration websocket commands."""
from __future__ import annotations
from typing import Any

View File

@ -1,4 +1,5 @@
"""Support for monitoring a Neurio energy sensor."""
from __future__ import annotations
from datetime import timedelta

View File

@ -1,4 +1,5 @@
"""Support for Nexia / Trane XL Thermostats."""
from homeassistant.components.binary_sensor import BinarySensorEntity
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant

View File

@ -1,4 +1,5 @@
"""Support for Nexia / Trane XL thermostats."""
from __future__ import annotations
from typing import Any

View File

@ -1,4 +1,5 @@
"""Nexia constants."""
from homeassistant.const import Platform
PLATFORMS = [

View File

@ -1,4 +1,5 @@
"""Component to embed nexia devices."""
from __future__ import annotations
from datetime import timedelta

View File

@ -1,4 +1,5 @@
"""Diagnostics support for nexia."""
from __future__ import annotations
from typing import Any

View File

@ -1,4 +1,5 @@
"""Support for Nexia / Trane XL Thermostats."""
from __future__ import annotations
from nexia.home import NexiaHome

View File

@ -1,4 +1,5 @@
"""Support for Nexia Automations."""
from typing import Any
from nexia.automation import NexiaAutomation

View File

@ -1,4 +1,5 @@
"""Support for Nexia / Trane XL Thermostats."""
from __future__ import annotations
from nexia.const import UNIT_CELSIUS

View File

@ -1,4 +1,5 @@
"""Support for Nexia switches."""
from __future__ import annotations
from typing import Any

View File

@ -1,4 +1,5 @@
"""Config flow to configure the Nextbus integration."""
from collections import Counter
import logging

View File

@ -1,4 +1,5 @@
"""NextBus data update coordinator."""
from datetime import timedelta
import logging
from typing import Any, cast

View File

@ -1,4 +1,5 @@
"""NextBus sensor."""
from __future__ import annotations
from itertools import chain

View File

@ -1,4 +1,5 @@
"""Utils for NextBus integration module."""
from typing import Any

View File

@ -1,4 +1,5 @@
"""Summary binary data from Nextcoud."""
from __future__ import annotations
from typing import Final

View File

@ -1,4 +1,5 @@
"""Config flow to configure the Nextcloud integration."""
from __future__ import annotations
from collections.abc import Mapping

View File

@ -1,4 +1,5 @@
"""Constants for Nextcloud integration."""
from datetime import timedelta
DOMAIN = "nextcloud"

View File

@ -1,4 +1,5 @@
"""Base entity for the Nextcloud integration."""
from urllib.parse import urlparse
from homeassistant.config_entries import ConfigEntry

View File

@ -1,4 +1,5 @@
"""Summary data from Nextcoud."""
from __future__ import annotations
from collections.abc import Callable

View File

@ -1,4 +1,5 @@
"""Update data from Nextcoud."""
from __future__ import annotations
from homeassistant.components.update import UpdateEntity, UpdateEntityDescription

View File

@ -1,4 +1,5 @@
"""The NextDNS component."""
from __future__ import annotations
import asyncio

View File

@ -1,4 +1,5 @@
"""Support for the NextDNS service."""
from __future__ import annotations
from collections.abc import Callable

View File

@ -1,4 +1,5 @@
"""Support for the NextDNS service."""
from __future__ import annotations
from homeassistant.components.button import ButtonEntity, ButtonEntityDescription

View File

@ -1,4 +1,5 @@
"""Adds config flow for NextDNS."""
from __future__ import annotations
import asyncio

View File

@ -1,4 +1,5 @@
"""Constants for NextDNS integration."""
from datetime import timedelta
ATTR_CONNECTION = "connection"

Some files were not shown because too many files have changed in this diff Show More