Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timotta committed Mar 5, 2023
1 parent b02afc3 commit 376cefc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ async def tick_check(_):
clock._sleep = AsyncMock(side_effect=tick_check)

with patch(
"asyncworker.time.asyncio.sleep", AsyncMock(side_effect=tick_check)
"asyncworker.time.asyncio.sleep",
AsyncMock(side_effect=tick_check),
) as sleep:
clock._running = True
await self.loop.create_task(clock._run())
Expand Down

0 comments on commit 376cefc

Please sign in to comment.