Update docstrings

This commit is contained in:
Jules 2023-12-27 11:22:27 +01:00
parent ad65e3132e
commit 7ceb719d8b
Signed by: jdejaegh
GPG key ID: 99D6D184CA66933A
7 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,4 @@
"""Config flow to set up IRM KMI integration via the UI"""
import logging import logging
import voluptuous as vol import voluptuous as vol

View file

@ -1,3 +1,5 @@
"""Constants for the IRM KMI integration"""
from homeassistant.components.weather import (ATTR_CONDITION_CLEAR_NIGHT, from homeassistant.components.weather import (ATTR_CONDITION_CLEAR_NIGHT,
ATTR_CONDITION_CLOUDY, ATTR_CONDITION_CLOUDY,
ATTR_CONDITION_EXCEPTIONAL, ATTR_CONDITION_EXCEPTIONAL,

View file

@ -1,4 +1,4 @@
"""Example integration using DataUpdateCoordinator.""" """DataUpdateCoordinator for the IRM KMI integration."""
import logging import logging
from datetime import datetime, timedelta from datetime import datetime, timedelta

View file

@ -1,3 +1,4 @@
"""Data classes for IRM KMI integration"""
from homeassistant.components.weather import Forecast from homeassistant.components.weather import Forecast

View file

@ -1,3 +1,5 @@
""""Support for IRM KMI weather."""
import logging import logging
from typing import List from typing import List

View file

@ -1,4 +1,4 @@
"""Tests for the Open-Meteo config flow.""" """Tests for the IRM KMI config flow."""
from unittest.mock import MagicMock from unittest.mock import MagicMock

View file

@ -1,4 +1,5 @@
"""Tests for the Open-Meteo integration.""" """Tests for the IRM KMI integration."""
from unittest.mock import AsyncMock from unittest.mock import AsyncMock
import pytest import pytest