mirror of
https://github.com/jdejaegh/irm-kmi-ha.git
synced 2025-06-27 11:39:26 +02:00
Update docstrings
This commit is contained in:
parent
ad65e3132e
commit
7ceb719d8b
7 changed files with 10 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
"""Data classes for IRM KMI integration"""
|
||||||
from homeassistant.components.weather import Forecast
|
from homeassistant.components.weather import Forecast
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
""""Support for IRM KMI weather."""
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
from typing import List
|
from typing import List
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue