From c636eda6eaff496e13c6c01f8d8b199deac93555 Mon Sep 17 00:00:00 2001 From: ALfuhrmann Date: Mon, 17 Jan 2022 15:00:44 +0100 Subject: [PATCH] copy-and-paste error in batch sending The "Send Batch Data" did not actually contain an "aio.send_batch_data" call. Fixed it. --- docs/data.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/data.rst b/docs/data.rst index ed76bf9..f59d0e4 100644 --- a/docs/data.rst +++ b/docs/data.rst @@ -79,7 +79,9 @@ Data can be created after you create a feed, by using the ``send_batch_data(feed # Create a data items in the 'Test' feed. data_list = [Data(value=10), Data(value=11)] - aio.create_data('Test', data) + # send batch data + aio.send_batch_data(temperature.key, data_list) + Receive Data