Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump motionblinds to 0.6.2 #68570

Merged
merged 1 commit into from Mar 23, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion homeassistant/components/motion_blinds/cover.py
Expand Up @@ -49,6 +49,7 @@
BlindType.Curtain: CoverDeviceClass.CURTAIN,
BlindType.CurtainLeft: CoverDeviceClass.CURTAIN,
BlindType.CurtainRight: CoverDeviceClass.CURTAIN,
BlindType.SkylightBlind: CoverDeviceClass.SHADE,
}

TILT_DEVICE_MAP = {
Expand All @@ -57,6 +58,7 @@
BlindType.DoubleRoller: CoverDeviceClass.SHADE,
BlindType.VerticalBlind: CoverDeviceClass.BLIND,
BlindType.VerticalBlindLeft: CoverDeviceClass.BLIND,
BlindType.VerticalBlindRight: CoverDeviceClass.BLIND,
}

TDBU_DEVICE_MAP = {
Expand Down Expand Up @@ -138,7 +140,7 @@ async def async_setup_entry(

else:
_LOGGER.warning(
"Blind type '%s' not yet supported, " "assuming RollerBlind",
"Blind type '%s' not yet supported, assuming RollerBlind",
blind.blind_type,
)
entities.append(
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/motion_blinds/manifest.json
Expand Up @@ -3,7 +3,7 @@
"name": "Motion Blinds",
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/motion_blinds",
"requirements": ["motionblinds==0.6.1"],
"requirements": ["motionblinds==0.6.2"],
"dependencies": ["network"],
"codeowners": ["@starkillerOG"],
"iot_class": "local_push",
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Expand Up @@ -1014,7 +1014,7 @@ mitemp_bt==0.0.5
moehlenhoff-alpha2==1.1.2

# homeassistant.components.motion_blinds
motionblinds==0.6.1
motionblinds==0.6.2

# homeassistant.components.motioneye
motioneye-client==0.3.12
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Expand Up @@ -677,7 +677,7 @@ minio==5.0.10
moehlenhoff-alpha2==1.1.2

# homeassistant.components.motion_blinds
motionblinds==0.6.1
motionblinds==0.6.2

# homeassistant.components.motioneye
motioneye-client==0.3.12
Expand Down