Skip to content

Commit c5f1c96

Browse files
committed
Fix black formatting for test_slcan.py
1 parent 669fb12 commit c5f1c96

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

test/test_slcan.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,13 @@ class slcanTestCase(unittest.TestCase):
7474
def setUp(self):
7575
self.bus = cast(
7676
can.interfaces.slcan.slcanBus,
77-
can.Bus("loop://", interface="slcan", sleep_after_open=0, timeout=TIMEOUT),
77+
can.Bus(
78+
"loop://",
79+
interface="slcan",
80+
sleep_after_open=0,
81+
timeout=TIMEOUT,
82+
bitrate=500000,
83+
),
7884
)
7985
self.serial = cast(SerialMock, self.bus.serialPortOrig)
8086
self.serial.reset_input_buffer()

0 commit comments

Comments
 (0)