From f21bd4947bb1eabd74284fea73d2549fa930830f Mon Sep 17 00:00:00 2001 From: cvwillegen Date: Wed, 29 May 2024 10:15:46 +0200 Subject: [PATCH] Use suggested feedback. Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> --- esphome/components/stepper/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/esphome/components/stepper/__init__.py b/esphome/components/stepper/__init__.py index 0c997fc2b6..e666950ce7 100644 --- a/esphome/components/stepper/__init__.py +++ b/esphome/components/stepper/__init__.py @@ -71,11 +71,8 @@ def validate_speed(value): Rotation = stepper_ns.enum("Rotation") ROTATIONS = { "BOTH": Rotation.ROTATION_BOTH, - "CW": Rotation.ROTATION_CW, "CLOCKWISE": Rotation.ROTATION_CW, - "CCW": Rotation.ROTATION_CCW, "COUNTERCLOCKWISE": Rotation.ROTATION_CCW, - "COUNTER-CLOCKWISE": Rotation.ROTATION_CCW, } STEPPER_SCHEMA = cv.Schema(