diff --git a/pypowerwall/__init__.py b/pypowerwall/__init__.py index 5975844..d44ca60 100644 --- a/pypowerwall/__init__.py +++ b/pypowerwall/__init__.py @@ -88,7 +88,7 @@ from typing import Union, Optional import time -version_tuple = (0, 10, 9) +version_tuple = (0, 10, 10) version = __version__ = '%d.%d.%d' % version_tuple __author__ = 'jasonacox' @@ -844,7 +844,7 @@ def set_grid_charging(self, mode) -> Optional[dict]: Enable or disable grid charging Args: - enabled: Set to True to enable grid charging, False to disable it + mode: Set to True to enable grid charging, False to disable it Returns: Dictionary with operation results. @@ -865,7 +865,7 @@ def set_grid_export(self, mode: str) -> Optional[dict]: Set grid export mode Args: - mode: Set grid export mode (battery_ok, pv_only, or never) + mode: Set grid export mode (battery_ok, pv_only, or never) Returns: Dictionary with operation results.