Skip to content

Commit 167b472

Browse files
committed
v0.4.6
1 parent 8d692ae commit 167b472

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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.5",
8+
version="0.4.6",
99
author="Brett Adams",
1010
author_email="hello@teslemetry.com",
1111
description="Tesla Fleet API library for Python",

tesla_fleet_api/exceptions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
class TeslaFleetError(BaseException):
55
"""Base class for all Tesla exceptions."""
66

7-
message: str = "An unknown error has occured."
8-
status: int | None
9-
data: dict | None
7+
message: str = "An unknown error has occurred."
8+
status: int | None = None
9+
data: dict | None = None
1010

1111
def __init__(self, data: dict | None = None, status: int | None = None):
1212
self.data = data

0 commit comments

Comments
 (0)