Skip to content

Commit

Permalink
Merge pull request trickeydan#24 from fredsch/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
trickeydan authored Feb 26, 2024
2 parents 456f494 + d56307f commit 36677f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hue2mqtt/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class LightBaseState(BaseModel):
effect: Optional[str]
hue: Optional[int]
sat: Optional[int]
xy: Optional[Tuple[int, int]]
xy: Optional[Tuple[float, float]]
transitiontime: Optional[str]


Expand All @@ -26,7 +26,7 @@ class LightSetState(LightBaseState):
sat_inc: Optional[int]
hue_inc: Optional[int]
ct_inc: Optional[int]
xy_inc: Optional[int]
xy_inc: Optional[Tuple[float, float]]


class GroupSetState(LightSetState):
Expand Down

0 comments on commit 36677f7

Please sign in to comment.