Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions homeassistant/components/tradfri/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,11 @@
"name": "Tradfri",
"config_flow": true,
"documentation": "https://www.home-assistant.io/components/tradfri",
"requirements": [
"pytradfri[async]==6.0.1"
],
"requirements": ["pytradfri[async]==6.3.1"],
"homekit": {
"models": [
"TRADFRI"
]
"models": ["TRADFRI"]
},
"dependencies": [],
"zeroconf": ["_coap._udp.local."],
"codeowners": [
"@ggravlingen"
]
"codeowners": ["@ggravlingen"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ pytraccar==0.9.0
pytrackr==0.0.5

# homeassistant.components.tradfri
pytradfri[async]==6.0.1
pytradfri[async]==6.3.1

# homeassistant.components.trafikverket_train
# homeassistant.components.trafikverket_weatherstation
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ python-velbus==2.0.27
python_awair==0.0.4

# homeassistant.components.tradfri
pytradfri[async]==6.0.1
pytradfri[async]==6.3.1

# homeassistant.components.vesync
pyvesync==1.1.0
Expand Down
4 changes: 3 additions & 1 deletion tests/components/tradfri/test_light.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
from unittest.mock import Mock, MagicMock, patch, PropertyMock

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

Expand Down