Skip to content

Commit

Permalink
Merge pull request #80 from garbled1/dependabot/pip/dev-dependencies-…
Browse files Browse the repository at this point in the history
…1241dcfb80

Bump the dev-dependencies group with 3 updates
  • Loading branch information
natekspencer authored Nov 1, 2024
2 parents f24e5b3 + 4e95cb8 commit 40eb06d
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 55 deletions.
111 changes: 58 additions & 53 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pybalboa/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ async def set_state(self, state: int | HeatMode) -> bool:
return False
if self._state == state:
return True
i = 2 if self.state == HeatMode.READY_IN_REST and state == HeatMode.READY else 1 # type: ignore
i = 2 if self.state == HeatMode.READY_IN_REST and state == HeatMode.READY else 1
for _ in range(i):
await self._client.send_message(MessageType.TOGGLE_STATE, self._code)
return True
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pytest-cov = ">=4,<6"
pytest-timeout = "^2.1.0"
mypy = "^1.3"
tox = ">=3.26,<5.0"
ruff = ">=0.5.0,<0.7"
ruff = ">=0.5.0,<0.8"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 40eb06d

Please sign in to comment.