Skip to content

Commit 7191b1b

Browse files
committed
formatting
1 parent 1498e28 commit 7191b1b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

adafruit_io/adafruit_io.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,9 @@ def send_group_data(
648648
validate_feed_key(group_key)
649649
path = self._compose_path("groups/{0}/data".format(group_key))
650650
if not isinstance(feeds_and_data, list):
651-
raise ValueError("This method accepts a list of dicts with \"key\" and \"value\".")
651+
raise ValueError(
652+
'This method accepts a list of dicts with "key" and "value".'
653+
)
652654
if metadata is not None:
653655
self._post(path, {**metadata, "feeds": feeds_and_data})
654656
else:

0 commit comments

Comments
 (0)