Skip to content

Commit

Permalink
docs: fix property documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse committed Feb 27, 2020
1 parent 21c919e commit c414ae7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions teslajsonpy/charger.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,22 +202,22 @@ def time_left(self) -> float:

@property
def added_range(self) -> float:
"""Return the charging rate."""
"""Return the added range."""
return self.__added_range

@property
def charge_current_request(self) -> float:
"""Return the charging rate."""
"""Return the requested current."""
return self.__charge_current_request

@property
def charger_actual_current(self) -> float:
"""Return the charging rate."""
"""Return the actual current."""
return self.__charger_actual_current

@property
def charger_voltage(self) -> float:
"""Return the charging rate."""
"""Return the voltage."""
return self.__charger_voltage

@property
Expand Down

0 comments on commit c414ae7

Please sign in to comment.