Skip to content

Commit 4a41db7

Browse files
illuusiofelixdivo
andauthored
Neousys: Make super-method more Python 3.x
Co-authored-by: Felix Divo <[email protected]>
1 parent 3378ee5 commit 4a41db7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

can/interfaces/neousys/neousys.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def __init__(self, channel, device=0, bitrate=500000, **kwargs):
141141
:param device: device number
142142
:param bitrate: bit rate. Renamed to bitrate in next release.
143143
"""
144-
super(NeousysBus, self).__init__(channel, **kwargs)
144+
super().__init__(channel, **kwargs)
145145

146146
if NEOUSYS_CANLIB is not None:
147147
self.channel = channel

0 commit comments

Comments
 (0)