mirror of
https://github.com/home-assistant/core.git
synced 2025-07-24 13:47:35 +00:00
Disable blinkstick integration (#121846)
This commit is contained in:
parent
62b9b34561
commit
5f02f3caa9
@ -1,10 +1,11 @@
|
|||||||
"""Support for Blinkstick lights."""
|
"""Support for Blinkstick lights."""
|
||||||
|
|
||||||
|
# mypy: ignore-errors
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
from blinkstick import blinkstick
|
# from blinkstick import blinkstick
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.components.light import (
|
from homeassistant.components.light import (
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
"domain": "blinksticklight",
|
"domain": "blinksticklight",
|
||||||
"name": "BlinkStick",
|
"name": "BlinkStick",
|
||||||
"codeowners": [],
|
"codeowners": [],
|
||||||
|
"disabled": "This integration is disabled because it uses non-open source code to operate.",
|
||||||
"documentation": "https://www.home-assistant.io/integrations/blinksticklight",
|
"documentation": "https://www.home-assistant.io/integrations/blinksticklight",
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"loggers": ["blinkstick"],
|
"loggers": ["blinkstick"],
|
||||||
|
5
homeassistant/components/blinksticklight/ruff.toml
Normal file
5
homeassistant/components/blinksticklight/ruff.toml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
extend = "../../../pyproject.toml"
|
||||||
|
|
||||||
|
lint.extend-ignore = [
|
||||||
|
"F821"
|
||||||
|
]
|
@ -12,9 +12,6 @@ AIOSomecomfort==0.0.25
|
|||||||
# homeassistant.components.adax
|
# homeassistant.components.adax
|
||||||
Adax-local==0.1.5
|
Adax-local==0.1.5
|
||||||
|
|
||||||
# homeassistant.components.blinksticklight
|
|
||||||
BlinkStick==1.2.0
|
|
||||||
|
|
||||||
# homeassistant.components.doorbird
|
# homeassistant.components.doorbird
|
||||||
DoorBirdPy==3.0.2
|
DoorBirdPy==3.0.2
|
||||||
|
|
||||||
|
@ -178,9 +178,6 @@ EXCEPTIONS = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TODO = {
|
TODO = {
|
||||||
"BlinkStick": AwesomeVersion(
|
|
||||||
"1.2.0"
|
|
||||||
), # Proprietary license https://github.com/arvydas/blinkstick-python
|
|
||||||
"PyMVGLive": AwesomeVersion(
|
"PyMVGLive": AwesomeVersion(
|
||||||
"1.1.4"
|
"1.1.4"
|
||||||
), # No license and archived https://github.com/pc-coholic/PyMVGLive
|
), # No license and archived https://github.com/pc-coholic/PyMVGLive
|
||||||
|
Loading…
x
Reference in New Issue
Block a user