From 094c5968f4cd9f69d9f08868d744820ba5eef101 Mon Sep 17 00:00:00 2001 From: pvizeli Date: Tue, 18 Apr 2017 17:18:32 +0200 Subject: [PATCH] Fix cleanup name --- hassio/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hassio/config.py b/hassio/config.py index 85fc51c4a..f7fa29b3d 100644 --- a/hassio/config.py +++ b/hassio/config.py @@ -89,12 +89,12 @@ class CoreConfig(Config): self._data[UPSTREAM_BETA] = bool(value) @property - def cleanup_hassio(self): + def hassio_cleanup(self): """Return Version they need to cleanup.""" return self._data.get(HASSIO_CLEANUP) - @cleanup_hassio.setter - def cleanup_hassio(self, version): + @hassio_cleanup.setter + def hassio_cleanup(self, version): """Set or remove cleanup flag.""" if version is None: self._data.pop(HASSIO_CLEANUP, None)