From cf41dc639bd7cee65049aefcdb667bd57fbee3a1 Mon Sep 17 00:00:00 2001
From: epenet <6771947+epenet@users.noreply.github.com>
Date: Wed, 31 Aug 2022 22:22:07 +0200
Subject: [PATCH] Adjust Available in hisense_aehw4a1 (#77590)

---
 homeassistant/components/hisense_aehw4a1/climate.py | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/homeassistant/components/hisense_aehw4a1/climate.py b/homeassistant/components/hisense_aehw4a1/climate.py
index a5d8dc800af..6f6ce2f2366 100644
--- a/homeassistant/components/hisense_aehw4a1/climate.py
+++ b/homeassistant/components/hisense_aehw4a1/climate.py
@@ -158,7 +158,7 @@ class ClimateAehW4a1(ClimateEntity):
         self._fan_modes = FAN_MODES
         self._swing_modes = SWING_MODES
         self._preset_modes = PRESET_MODES
-        self._available = None
+        self._attr_available = False
         self._on = None
         self._current_temperature = None
         self._target_temperature = None
@@ -176,10 +176,10 @@ class ClimateAehW4a1(ClimateEntity):
             _LOGGER.warning(
                 "Unexpected error of %s: %s", self._unique_id, library_error
             )
-            self._available = False
+            self._attr_available = False
             return
 
-        self._available = True
+        self._attr_available = True
 
         self._on = status["run_status"]
 
@@ -226,11 +226,6 @@ class ClimateAehW4a1(ClimateEntity):
             self._target_temperature = None
             self._preset_mode = None
 
-    @property
-    def available(self):
-        """Return True if entity is available."""
-        return self._available
-
     @property
     def name(self):
         """Return the name of the climate device."""
-- 
GitLab