Skip to content

Commit

Permalink
v0.2.20: movement direction enum change
Browse files Browse the repository at this point in the history
  • Loading branch information
dudanov committed Jul 16, 2024
1 parent c8ad635 commit 2851e4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyftms/client/properties/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ class MovementDirection(IntEnum, boundary=STRICT):
Described in section **4.5.1.1 Flags Field**.
"""

FORWARD = auto()
FORWARD = 0
"""Move Forward."""
BACKWARD = auto()
BACKWARD = 1
"""Move Backward."""


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyftms"
version = "0.2.19"
version = "0.2.20"
description = "PyFTMS - Python Fitness Machine Service client library."
authors = ["Sergey V. DUDANOV <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 2851e4d

Please sign in to comment.