Skip to content

Commit

Permalink
Fixes the vis nav power state enum set (#154)
Browse files Browse the repository at this point in the history
Co-authored-by: Ben Vezzani <ben@vez.email>
  • Loading branch information
dotvezz and Ben Vezzani committed Apr 30, 2024
1 parent d723fba commit 4de4575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/dyson_local/vacuum.py
Expand Up @@ -131,7 +131,7 @@
VacuumVisNavPowerMode.BOOST: "Boost",
}
VIS_NAV_POWER_MODE_STR_TO_ENUM = {
value: key for key, value in HEURIST_POWER_MODE_ENUM_TO_STR.items()
value: key for key, value in VIS_NAV_POWER_MODE_ENUM_TO_STR.items()
}

ATTR_POSITION = "position"
Expand Down

0 comments on commit 4de4575

Please sign in to comment.