Skip to content

Commit

Permalink
Format with black to pass checks
Browse files Browse the repository at this point in the history
  • Loading branch information
SWolfSchunk committed Sep 9, 2024
1 parent 05444a9 commit 9360118
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion can/bus.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9360118

Please sign in to comment.