Skip to content

Commit f8ebb6a

Browse files
committed
Trunk enum fix
1 parent 7f3171b commit f8ebb6a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="tesla_fleet_api",
8-
version="0.4.2",
8+
version="0.4.3",
99
author="Brett Adams",
1010
author_email="hello@teslemetry.com",
1111
description="Tesla Fleet API library for Python",

tesla_fleet_api/const.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ class Error(StrEnum):
4242
class Trunk(StrEnum):
4343
"""Trunk options"""
4444

45-
FRONT: "front"
46-
REAR: "rear"
45+
FRONT = "front"
46+
REAR = "rear"
4747

4848

4949
class Seat(IntEnum):

0 commit comments

Comments
 (0)