Add empty line after module docstring [tests l-p] (#112710)

This commit is contained in:
Marc Mueller 2024-03-08 14:55:15 +01:00 committed by GitHub
parent 7cbe49520e
commit 1722e23df8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
532 changed files with 532 additions and 0 deletions

View file

@ -1,4 +1,5 @@
"""Provide common mysensors fixtures."""
from __future__ import annotations
from collections.abc import AsyncGenerator, Callable, Generator

View file

@ -1,4 +1,5 @@
"""Provide tests for mysensors binary sensor platform."""
from __future__ import annotations
from collections.abc import Callable

View file

@ -1,4 +1,5 @@
"""Provide tests for mysensors climate platform."""
from __future__ import annotations
from collections.abc import Callable

View file

@ -1,4 +1,5 @@
"""Test the MySensors config flow."""
from __future__ import annotations
from typing import Any

View file

@ -1,4 +1,5 @@
"""Provide tests for mysensors cover platform."""
from __future__ import annotations
from collections.abc import Callable

View file

@ -1,4 +1,5 @@
"""Provide tests for mysensors device tracker platform."""
from __future__ import annotations
from collections.abc import Callable

View file

@ -1,4 +1,5 @@
"""Test function in gateway.py."""
from unittest.mock import patch
import pytest

View file

@ -1,4 +1,5 @@
"""Test function in __init__.py."""
from __future__ import annotations
from mysensors import BaseSyncGateway

View file

@ -1,4 +1,5 @@
"""Provide tests for mysensors light platform."""
from __future__ import annotations
from collections.abc import Callable

View file

@ -1,4 +1,5 @@
"""Provide tests for mysensors remote platform."""
from __future__ import annotations
from collections.abc import Callable

View file

@ -1,4 +1,5 @@
"""Provide tests for mysensors sensor platform."""
from __future__ import annotations
from collections.abc import Callable

View file

@ -1,4 +1,5 @@
"""Provide tests for mysensors switch platform."""
from __future__ import annotations
from collections.abc import Callable

View file

@ -1,4 +1,5 @@
"""Provide tests for mysensors text platform."""
from __future__ import annotations
from collections.abc import Callable