Updating naming for flux_led (#61187)

pull/61241/head
J. Nick Koston 2021-12-07 22:30:22 -10:00 committed by GitHub
parent fad5314154
commit d5aa4a9ce1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View File

@ -43,7 +43,7 @@ _LOGGER = logging.getLogger(__name__)
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
"""Handle a config flow for FluxLED/MagicHome Integration."""
"""Handle a config flow for Magic Home Integration."""
VERSION = 1

View File

@ -1,4 +1,4 @@
"""Support for FluxLED/MagicHome lights."""
"""Support for Magic Home lights."""
from __future__ import annotations
from abc import abstractmethod
@ -36,7 +36,7 @@ class FluxEntity(CoordinatorEntity):
if self.unique_id:
self._attr_device_info = DeviceInfo(
connections={(dr.CONNECTION_NETWORK_MAC, self.unique_id)},
manufacturer="FluxLED/Magic Home",
manufacturer="Magic Home (Zengge)",
model=self._device.model,
name=self.name,
sw_version=str(self._device.version_num),

View File

@ -1,4 +1,4 @@
"""Support for FluxLED/MagicHome lights."""
"""Support for Magic Home lights."""
from __future__ import annotations
import ast

View File

@ -1,6 +1,6 @@
{
"domain": "flux_led",
"name": "Flux LED/MagicHome",
"name": "Magic Home",
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/flux_led",
"requirements": ["flux_led==0.26.2"],

View File

@ -1,4 +1,4 @@
"""Support for FluxLED/MagicHome switches."""
"""Support for Magic Home switches."""
from __future__ import annotations
from typing import Any

View File

@ -1,4 +1,4 @@
"""Utils for FluxLED/MagicHome."""
"""Utils for Magic Home."""
from __future__ import annotations
from flux_led.aio import AIOWifiLedBulb