diff --git a/multimatic/fan.py b/multimatic/fan.py index ecdb680..457545d 100644 --- a/multimatic/fan.py +++ b/multimatic/fan.py @@ -79,7 +79,10 @@ def supported_features(self) -> int: @property def speed_list(self) -> list: """Get the list of available speeds.""" - if self.coordinator.system.get_active_mode_ventilation().current == QuickModes.VENTILATION_BOOST: + if ( + self.coordinator.system.get_active_mode_ventilation().current + == QuickModes.VENTILATION_BOOST + ): return self._speed_list + [QuickModes.VENTILATION_BOOST.name] return self._speed_list