Skip to content

Commit

Permalink
Merge pull request #58 from iprak/fix-missing-message-in-SensiConnect…
Browse files Browse the repository at this point in the history
…ionError

fix: fixed formatting
  • Loading branch information
iprak authored Aug 26, 2024
2 parents c0d9b21 + 7e307f6 commit afd5491
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions custom_components/sensi/auth.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sensi Thermostat authentication helpers."""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions custom_components/sensi/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants for the Sensi Thermostat component."""

from __future__ import annotations

from enum import StrEnum
Expand Down
2 changes: 1 addition & 1 deletion custom_components/sensi/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sensi thermostat sensors."""

from __future__ import annotations

from collections.abc import Callable
Expand Down Expand Up @@ -64,7 +65,6 @@ class SensiSensorEntityDescription(
value_fn=lambda device: device.battery_level,
entity_category=EntityCategory.DIAGNOSTIC,
),

SensiSensorEntityDescription(
key=Settings.COOL_MIN_TEMP,
name="Min setpoint",
Expand Down

0 comments on commit afd5491

Please sign in to comment.