Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tyeth committed Jul 16, 2024
1 parent 1498e28 commit 7191b1b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion adafruit_io/adafruit_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,9 @@ def send_group_data(
validate_feed_key(group_key)
path = self._compose_path("groups/{0}/data".format(group_key))
if not isinstance(feeds_and_data, list):
raise ValueError("This method accepts a list of dicts with \"key\" and \"value\".")
raise ValueError(
'This method accepts a list of dicts with "key" and "value".'
)
if metadata is not None:
self._post(path, {**metadata, "feeds": feeds_and_data})
else:
Expand Down

0 comments on commit 7191b1b

Please sign in to comment.