From 7b2c37962e892e2d3770ccbf958729580bb7213d Mon Sep 17 00:00:00 2001 From: Mike Degatano Date: Thu, 10 Oct 2024 18:36:45 +0000 Subject: [PATCH] CodeRabbit suggestion --- tests/test_supervisor.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_supervisor.py b/tests/test_supervisor.py index 9e093fc0fa7..42ec8d5baa7 100644 --- a/tests/test_supervisor.py +++ b/tests/test_supervisor.py @@ -82,9 +82,7 @@ async def test_connectivity_check_throttling( websession.head.side_effect = side_effect reset_last_call(Supervisor.check_connectivity) - with ( - travel(datetime.now(), tick=False) as traveller, - ): + with travel(datetime.now(), tick=False) as traveller: await coresys.supervisor.check_connectivity() traveller.shift(call_interval) await coresys.supervisor.check_connectivity()