Skip to content

Commit

Permalink
Update docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
jdejaegh committed Dec 27, 2023
1 parent ad65e31 commit 7ceb719
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions custom_components/irm_kmi/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Config flow to set up IRM KMI integration via the UI"""
import logging

import voluptuous as vol
Expand Down
2 changes: 2 additions & 0 deletions custom_components/irm_kmi/const.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Constants for the IRM KMI integration"""

from homeassistant.components.weather import (ATTR_CONDITION_CLEAR_NIGHT,
ATTR_CONDITION_CLOUDY,
ATTR_CONDITION_EXCEPTIONAL,
Expand Down
2 changes: 1 addition & 1 deletion custom_components/irm_kmi/coordinator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Example integration using DataUpdateCoordinator."""
"""DataUpdateCoordinator for the IRM KMI integration."""

import logging
from datetime import datetime, timedelta
Expand Down
1 change: 1 addition & 0 deletions custom_components/irm_kmi/data.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Data classes for IRM KMI integration"""
from homeassistant.components.weather import Forecast


Expand Down
2 changes: 2 additions & 0 deletions custom_components/irm_kmi/weather.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
""""Support for IRM KMI weather."""

import logging
from typing import List

Expand Down
2 changes: 1 addition & 1 deletion tests/test_config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Tests for the Open-Meteo config flow."""
"""Tests for the IRM KMI config flow."""

from unittest.mock import MagicMock

Expand Down
3 changes: 2 additions & 1 deletion tests/test_init.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for the Open-Meteo integration."""
"""Tests for the IRM KMI integration."""

from unittest.mock import AsyncMock

import pytest
Expand Down

0 comments on commit 7ceb719

Please sign in to comment.