Added missing super init on Android interfaces
This commit is contained in:
parent
875348383d
commit
9f58860842
|
@ -82,8 +82,7 @@ class KISSInterface(Interface):
|
|||
else:
|
||||
raise SystemError("Android-specific interface was used on non-Android OS")
|
||||
|
||||
self.rxb = 0
|
||||
self.txb = 0
|
||||
super().__init__()
|
||||
|
||||
self.HW_MTU = 564
|
||||
|
||||
|
|
|
@ -349,8 +349,7 @@ class RNodeInterface(Interface):
|
|||
else:
|
||||
raise SystemError("Android-specific interface was used on non-Android OS")
|
||||
|
||||
self.rxb = 0
|
||||
self.txb = 0
|
||||
super().__init__()
|
||||
|
||||
self.HW_MTU = 508
|
||||
|
||||
|
|
|
@ -72,8 +72,7 @@ class SerialInterface(Interface):
|
|||
else:
|
||||
raise SystemError("Android-specific interface was used on non-Android OS")
|
||||
|
||||
self.rxb = 0
|
||||
self.txb = 0
|
||||
super().__init__()
|
||||
|
||||
self.HW_MTU = 564
|
||||
|
||||
|
|
Loading…
Reference in New Issue