Skip to content

Commit 931b68e

Browse files
authored
fix: remove carpet clean mode (#772)
1 parent d313010 commit 931b68e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

roborock/data/v1/v1_clean_modes.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ class VacuumModes(RoborockModeEnum):
1616
TURBO = ("turbo", 103)
1717
MAX = ("max", 104)
1818
MAX_PLUS = ("max_plus", 108)
19-
CARPET = ("carpet", 107)
2019
OFF_RAISE_MAIN_BRUSH = ("off_raise_main_brush", 109)
2120
CUSTOMIZED = ("custom", 106)
2221
SMART_MODE = ("smart_mode", 110)
@@ -85,8 +84,6 @@ def get_clean_modes(features: DeviceFeatures) -> list[VacuumModes]:
8584
if features.is_max_plus_mode_supported or features.is_none_pure_clean_mop_with_max_plus:
8685
# If the vacuum has max plus mode supported
8786
modes.append(VacuumModes.MAX_PLUS)
88-
if features.is_carpet_deep_clean_supported:
89-
modes.append(VacuumModes.CARPET)
9087
if features.is_pure_clean_mop_supported:
9188
# If the vacuum is capable of 'pure mop clean' aka no vacuum
9289
if features.is_support_main_brush_up_down_supported:

0 commit comments

Comments
 (0)