Added missing super init on Android interfaces

pull/385/head
Mark Qvist 2023-10-02 17:36:33 +02:00
rodzic 875348383d
commit 9f58860842
3 zmienionych plików z 3 dodań i 6 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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

Wyświetl plik

@ -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