We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80747e3 commit 1d05ef7Copy full SHA for 1d05ef7
1 file changed
examples/cyclic_multiple.py
@@ -133,9 +133,9 @@ def cyclic_multiple_send_modify(bus):
133
for interface, channel in [("socketcan", "vcan0")]:
134
print(f"Carrying out cyclic multiple tests with {interface} interface")
135
136
- with can.Bus(
+ with can.Bus( # type: ignore
137
interface=interface, channel=channel, bitrate=500000
138
- ) as BUS: # type: ignore
+ ) as BUS:
139
cyclic_multiple_send(BUS)
140
cyclic_multiple_send_modify(BUS)
141
0 commit comments