Skip to content

Commit

Permalink
Fix spelling inconsistency in function name
Browse files Browse the repository at this point in the history
  • Loading branch information
jschlyter committed Dec 7, 2022
1 parent 3ae434a commit a0e64e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 1.6.1 (2022-12-07)

- Fix spelling inconsistency in function name

## 1.6.0 (2022-12-06)

- Add handling of predefined effects and playlists (from @Olen)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[tool.poetry]
name = "ttls"
version = "1.6.0"
version = "1.6.1"
description = "Twinkly Twinkly Little Star"
authors = ["Jakob Schlyter <jakob@schlyter.se>"]
license = "BSD"
Expand Down
2 changes: 1 addition & 1 deletion ttls/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ async def get_current_movie(self) -> Any:
async def set_current_movie(self, movie_id: int) -> Any:
return await self._post("movies/current", json={"id": movie_id})

async def get_current_color(self) -> Any:
async def get_current_colour(self) -> Any:
return await self._get("led/color")

async def get_predefined_effects(self) -> Any:
Expand Down

0 comments on commit a0e64e2

Please sign in to comment.