Skip to content

Commit 1d05ef7

Browse files
committed
fix a tiny typechecker regression introduced by the formatter
1 parent 80747e3 commit 1d05ef7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/cyclic_multiple.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ def cyclic_multiple_send_modify(bus):
133133
for interface, channel in [("socketcan", "vcan0")]:
134134
print(f"Carrying out cyclic multiple tests with {interface} interface")
135135

136-
with can.Bus(
136+
with can.Bus( # type: ignore
137137
interface=interface, channel=channel, bitrate=500000
138-
) as BUS: # type: ignore
138+
) as BUS:
139139
cyclic_multiple_send(BUS)
140140
cyclic_multiple_send_modify(BUS)
141141

0 commit comments

Comments
 (0)