Skip to content

Commit

Permalink
Fix "black" lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
robbinjanssen committed Jun 4, 2024
1 parent 88f105c commit 54b2cfa
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions custom_components/omnik_inverter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Omnik Inverter platform configuration."""

from homeassistant.config_entries import ConfigEntry
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
Expand Down
1 change: 1 addition & 0 deletions custom_components/omnik_inverter/binary_sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Omnik Inverter binary sensors."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions custom_components/omnik_inverter/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Config flow for Omnik Inverter integration."""

from __future__ import annotations

import socket
Expand Down
1 change: 1 addition & 0 deletions custom_components/omnik_inverter/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants for the Omnik Inverter integration."""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions custom_components/omnik_inverter/coordinator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Omnik Inverter platform configuration."""

import logging
from datetime import timedelta
from typing import TypedDict
Expand Down
1 change: 1 addition & 0 deletions custom_components/omnik_inverter/diagnostics.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Diagnostics support for Omnik Inverter integration."""

from __future__ import annotations

from dataclasses import asdict
Expand Down
1 change: 1 addition & 0 deletions custom_components/omnik_inverter/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Omnik Inverter entities."""

from __future__ import annotations

from dataclasses import dataclass
Expand Down
1 change: 1 addition & 0 deletions custom_components/omnik_inverter/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for Omnik Inverter sensors."""

from __future__ import annotations

import dataclasses
Expand Down

0 comments on commit 54b2cfa

Please sign in to comment.