Change google sheets data example from List to Dictionary (#24403)

This commit is contained in:
Mark Breen 2022-10-19 20:19:27 +01:00 committed by GitHub
parent 181ee097bf
commit 254ce55338
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,6 +81,6 @@ You can use the service `google_sheets.append_sheet` to add a row of data to the
| ---------------------- | -------- | ----------- | --------|
| `config_entry` | no | Config entry to use.
| `worksheet` | yes | Name of the worksheet. Defaults to the first one in the document. | Sheet1
| `data` | no | Data to be appended to the worksheet. This puts the data on a new row, one value per column. | ["foo"]
| `data` | no | Data to be appended to the worksheet. This puts the data on a new row, one value per column. | {"hello": world, "cool": True, "count": 5}
{% enddetails %}