Skip to content

Commit b9c8ff5

Browse files
committed
Small fix for test and ping
1 parent 28ba129 commit b9c8ff5

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.2.2",
8+
version="0.2.3",
99
author="Brett Adams",
1010
author_email="[email protected]",
1111
description="Tesla Fleet API library for Python",

tesla_fleet_api/teslemetry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ async def ping(self) -> bool:
2424
"""Send a ping."""
2525
return await self._request(
2626
Methods.GET,
27-
"/api/ping",
27+
"api/ping",
2828
)
2929

3030
async def test(self) -> bool:
3131
"""Test API Authentication."""
3232
return await self._request(
3333
Methods.GET,
34-
"/api/test",
34+
"api/test",
3535
)
3636

3737
async def find_server(self):

0 commit comments

Comments
 (0)