mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 12:17:07 +00:00
parent
a8a485abf7
commit
1e5de9e9e4
@ -3,17 +3,11 @@
|
|||||||
"name": "Tradfri",
|
"name": "Tradfri",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/components/tradfri",
|
"documentation": "https://www.home-assistant.io/components/tradfri",
|
||||||
"requirements": [
|
"requirements": ["pytradfri[async]==6.3.1"],
|
||||||
"pytradfri[async]==6.0.1"
|
|
||||||
],
|
|
||||||
"homekit": {
|
"homekit": {
|
||||||
"models": [
|
"models": ["TRADFRI"]
|
||||||
"TRADFRI"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"zeroconf": ["_coap._udp.local."],
|
"zeroconf": ["_coap._udp.local."],
|
||||||
"codeowners": [
|
"codeowners": ["@ggravlingen"]
|
||||||
"@ggravlingen"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@ -1596,7 +1596,7 @@ pytraccar==0.9.0
|
|||||||
pytrackr==0.0.5
|
pytrackr==0.0.5
|
||||||
|
|
||||||
# homeassistant.components.tradfri
|
# homeassistant.components.tradfri
|
||||||
pytradfri[async]==6.0.1
|
pytradfri[async]==6.3.1
|
||||||
|
|
||||||
# homeassistant.components.trafikverket_train
|
# homeassistant.components.trafikverket_train
|
||||||
# homeassistant.components.trafikverket_weatherstation
|
# homeassistant.components.trafikverket_weatherstation
|
||||||
|
@ -356,7 +356,7 @@ python-velbus==2.0.27
|
|||||||
python_awair==0.0.4
|
python_awair==0.0.4
|
||||||
|
|
||||||
# homeassistant.components.tradfri
|
# homeassistant.components.tradfri
|
||||||
pytradfri[async]==6.0.1
|
pytradfri[async]==6.3.1
|
||||||
|
|
||||||
# homeassistant.components.vesync
|
# homeassistant.components.vesync
|
||||||
pyvesync==1.1.0
|
pyvesync==1.1.0
|
||||||
|
@ -4,7 +4,9 @@ from copy import deepcopy
|
|||||||
from unittest.mock import Mock, MagicMock, patch, PropertyMock
|
from unittest.mock import Mock, MagicMock, patch, PropertyMock
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from pytradfri.device import Device, LightControl, Light
|
from pytradfri.device import Device
|
||||||
|
from pytradfri.device.light import Light
|
||||||
|
from pytradfri.device.light_control import LightControl
|
||||||
|
|
||||||
from homeassistant.components import tradfri
|
from homeassistant.components import tradfri
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user