Skip to content

Fixing broken link in set_group docstring #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions adafruit_hue.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ def set_group(self, group_id, **kwargs):
:param int bri: Brightness value of the light (1 to 254)
:param int hue: Hue value to set the light to (0 to 65535)
:param int sat: Saturation of the light (0 to 254)
(more settings at https://developers.meethue.com/develop/hue-api/
lights-api/#set-light-state)
(more settings at
https://developers.meethue.com/develop/hue-api/lights-api/#set-light-state )
"""
resp = self._put('{0}/groups/{1}/action'.format(self._username_url, group_id), kwargs)
return resp
Expand Down