We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1498e28 commit 7191b1bCopy full SHA for 7191b1b
adafruit_io/adafruit_io.py
@@ -648,7 +648,9 @@ def send_group_data(
648
validate_feed_key(group_key)
649
path = self._compose_path("groups/{0}/data".format(group_key))
650
if not isinstance(feeds_and_data, list):
651
- raise ValueError("This method accepts a list of dicts with \"key\" and \"value\".")
+ raise ValueError(
652
+ 'This method accepts a list of dicts with "key" and "value".'
653
+ )
654
if metadata is not None:
655
self._post(path, {**metadata, "feeds": feeds_and_data})
656
else:
0 commit comments