From 42a88e647ba0dbca9de6d084737453212ac97ffa Mon Sep 17 00:00:00 2001 From: cwasicki <126617870+cwasicki@users.noreply.github.com> Date: Wed, 20 Nov 2024 09:57:51 +0100 Subject: [PATCH] Fix example in README And update to latest version. Signed-off-by: cwasicki <126617870+cwasicki@users.noreply.github.com> --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1e6cd43..4f88602 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Please also refer to [examples](https://github.com/frequenz-floss/frequenz-clien ```bash # Choose the version you want to install -VERSION=0.9.0 +VERSION=0.10.0 pip install frequenz-client-reporting==$VERSION ``` @@ -93,8 +93,8 @@ data = [ start_dt=datetime.fromisoformat("2024-05-01T00:00:00"), end_dt=datetime.fromisoformat("2024-05-02T00:00:00"), resampling_period=timedelta(seconds=1), - states=False, # Set to True to include state data - bounds=False, # Set to True to include metric bounds data + include_states=False, # Set to True to include state data + include_bounds=False, # Set to True to include metric bounds data ) ] ```