We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28ba129 commit b9c8ff5Copy full SHA for b9c8ff5
setup.py
@@ -5,7 +5,7 @@
5
6
setuptools.setup(
7
name="tesla_fleet_api",
8
- version="0.2.2",
+ version="0.2.3",
9
author="Brett Adams",
10
author_email="[email protected]",
11
description="Tesla Fleet API library for Python",
tesla_fleet_api/teslemetry.py
@@ -24,14 +24,14 @@ async def ping(self) -> bool:
24
"""Send a ping."""
25
return await self._request(
26
Methods.GET,
27
- "/api/ping",
+ "api/ping",
28
)
29
30
async def test(self) -> bool:
31
"""Test API Authentication."""
32
33
34
- "/api/test",
+ "api/test",
35
36
37
async def find_server(self):
0 commit comments