Skip to content

Commit

Permalink
Update fjäråskupan to 2.3.2 (#133499)
Browse files Browse the repository at this point in the history
  • Loading branch information
elupus authored Dec 18, 2024
1 parent 5516f36 commit a6089b4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions homeassistant/components/fjaraskupan/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

from typing import Any

from fjaraskupan import COMMAND_LIGHT_ON_OFF

from homeassistant.components.light import ATTR_BRIGHTNESS, ColorMode, LightEntity
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
Expand Down Expand Up @@ -62,7 +60,6 @@ async def async_turn_off(self, **kwargs: Any) -> None:
if self.is_on:
async with self.coordinator.async_connect_and_update() as device:
await device.send_dim(0)
await device.send_command(COMMAND_LIGHT_ON_OFF)

@property
def is_on(self) -> bool:
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/fjaraskupan/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
"documentation": "https://www.home-assistant.io/integrations/fjaraskupan",
"iot_class": "local_polling",
"loggers": ["bleak", "fjaraskupan"],
"requirements": ["fjaraskupan==2.3.1"]
"requirements": ["fjaraskupan==2.3.2"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ fivem-api==0.1.2
fixerio==1.0.0a0

# homeassistant.components.fjaraskupan
fjaraskupan==2.3.1
fjaraskupan==2.3.2

# homeassistant.components.flexit_bacnet
flexit_bacnet==2.2.1
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ fitbit==0.3.1
fivem-api==0.1.2

# homeassistant.components.fjaraskupan
fjaraskupan==2.3.1
fjaraskupan==2.3.2

# homeassistant.components.flexit_bacnet
flexit_bacnet==2.2.1
Expand Down

0 comments on commit a6089b4

Please sign in to comment.