Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bre77 committed Jan 28, 2024
1 parent 102a69f commit 28ba129
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions tesla_fleet_api/energyspecific.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
from typing import Any
from .energy import Energy


class EnergySpecific:
"""Class describing the Tesla Fleet API partner endpoints"""

def __init__(
self,
parent: Energy,
parent,
energy_site_id: int,
):
self._parent = parent
Expand Down
2 changes: 0 additions & 2 deletions tesla_fleet_api/teslafleetapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from .partner import Partner
from .user import User
from .vehicle import Vehicle
from .vehiclespecific import VehicleSpecific


# Based on https://developer.tesla.com/docs/fleet-api
Expand All @@ -18,7 +17,6 @@ class TeslaFleetApi:
session: aiohttp.ClientSession
headers: dict[str, str]
raise_for_status: bool
vehicles: list[VehicleSpecific]

def __init__(
self,
Expand Down

0 comments on commit 28ba129

Please sign in to comment.