We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f3171b commit f8ebb6aCopy full SHA for f8ebb6a
setup.py
@@ -5,7 +5,7 @@
5
6
setuptools.setup(
7
name="tesla_fleet_api",
8
- version="0.4.2",
+ version="0.4.3",
9
author="Brett Adams",
10
author_email="hello@teslemetry.com",
11
description="Tesla Fleet API library for Python",
tesla_fleet_api/const.py
@@ -42,8 +42,8 @@ class Error(StrEnum):
42
class Trunk(StrEnum):
43
"""Trunk options"""
44
45
- FRONT: "front"
46
- REAR: "rear"
+ FRONT = "front"
+ REAR = "rear"
47
48
49
class Seat(IntEnum):
0 commit comments