Skip to content

Commit

Permalink
Merge pull request #89 from natekspencer/bump-mypy
Browse files Browse the repository at this point in the history
Bump mypy dev dependency
  • Loading branch information
natekspencer authored Feb 8, 2025
2 parents 9492c1c + c48d8bc commit c439508
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 38 deletions.
72 changes: 36 additions & 36 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pybalboa/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async def test_controls(spa: SpaClient) -> None:
if option not in (state, control.state):
await adjust_control(control, option)
if control.state != state:
await adjust_control(control, state) # type: ignore
await adjust_control(control, state)
print()


Expand Down Expand Up @@ -165,7 +165,7 @@ async def adjust_control(control: SpaControl, state: IntEnum) -> None:

async def _state_check() -> None:
while control.state != state:
await asyncio.sleep(0.1) # type: ignore
await asyncio.sleep(0.1)

wait = 10
try:
Expand Down

0 comments on commit c439508

Please sign in to comment.