diff --git a/homeassistant/components/homekit/type_covers.py b/homeassistant/components/homekit/type_covers.py index 8ad095faa13..807941c7a6d 100644 --- a/homeassistant/components/homekit/type_covers.py +++ b/homeassistant/components/homekit/type_covers.py @@ -17,9 +17,9 @@ from homeassistant.const import ( SERVICE_SET_COVER_POSITION, SERVICE_STOP_COVER, STATE_CLOSED, + STATE_CLOSING, STATE_OPEN, STATE_OPENING, - STATE_CLOSING, ) from . import TYPES diff --git a/tests/components/homekit/test_type_covers.py b/tests/components/homekit/test_type_covers.py index 7ff65619bb6..7bf92b28de2 100644 --- a/tests/components/homekit/test_type_covers.py +++ b/tests/components/homekit/test_type_covers.py @@ -14,9 +14,9 @@ from homeassistant.const import ( ATTR_ENTITY_ID, ATTR_SUPPORTED_FEATURES, STATE_CLOSED, + STATE_CLOSING, STATE_OPEN, STATE_OPENING, - STATE_CLOSING, STATE_UNAVAILABLE, STATE_UNKNOWN, )