From 9360118db820eca5cf8db6c3175511084c6bed85 Mon Sep 17 00:00:00 2001 From: Sebastian Wolf Date: Mon, 9 Sep 2024 13:35:09 +0200 Subject: [PATCH] Format with black to pass checks --- can/bus.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/can/bus.py b/can/bus.py index 7ddb439bc..ad6355631 100644 --- a/can/bus.py +++ b/can/bus.py @@ -276,7 +276,9 @@ def send_periodic( # Create a backend specific task; will be patched to a _SelfRemovingCyclicTask later task = cast( _SelfRemovingCyclicTask, - self._send_periodic_internal(msgs, period, duration, autostart, modifier_callback), + self._send_periodic_internal( + msgs, period, duration, autostart, modifier_callback + ), ) # we wrap the task's stop method to also remove it from the Bus's list of tasks periodic_tasks = self._periodic_tasks