v0.10.1 Allow merged type to be bidirectional (#332)

Theoretically fixes #331
This commit is contained in:
Mike Marvin
2024-12-25 13:51:13 -05:00
committed by GitHub
parent 6f06d2c3e2
commit 86804e1301
2 changed files with 3 additions and 2 deletions

View File

@@ -472,8 +472,9 @@ async def parse_flattened_usage_data(
fixed_usage,
)
bidirectional = "bidirectional" in info_channel.type.lower() or "merged" in info_channel.type.lower()
fixed_usage = fix_usage_sign(
channel_num, fixed_usage, "bidirectional" in info_channel.type.lower()
channel_num, fixed_usage, bidirectional
)
data[identifier] = {

View File

@@ -11,6 +11,6 @@
"issue_tracker": "https://github.com/magico13/ha-emporia-vue/issues",
"requirements": ["pyemvue==0.18.6"],
"ssdp": [],
"version": "0.10.0",
"version": "0.10.1",
"zeroconf": []
}