From 04dfdfe6498babf14fbc4588cbbb265065ce80a5 Mon Sep 17 00:00:00 2001 From: Fred C Date: Mon, 11 Nov 2024 10:27:16 -0800 Subject: [PATCH] Remove empty lines --- wsjtx.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/wsjtx.py b/wsjtx.py index 1ba23ca..9bc8e5f 100644 --- a/wsjtx.py +++ b/wsjtx.py @@ -230,7 +230,6 @@ def _set_double(self, value): class WSHeartbeat(_WSPacket): """Packet Type 0 Heartbeat (In/Out)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.HEARTBEAT @@ -267,7 +266,6 @@ def Revision(self): class WSStatus(_WSPacket): """Packet Type 1 Status (Out)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.STATUS @@ -383,7 +381,6 @@ def xMessage(self): class WSDecode(_WSPacket): """Packet Type 2 Decode (Out)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.DECODE @@ -442,7 +439,6 @@ def OffAir(self): class WSClear(_WSPacket): """Packet Type 3 Clear (Out/In)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.CLEAR @@ -471,7 +467,6 @@ class WSReply(_WSPacket): * Low confidence bool * Modifiers quint8 """ - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.REPLY @@ -560,7 +555,6 @@ def Modifiers(self, modifier): class WSLogged(_WSPacket): """Packet Type 5 QSO Logged (Out)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.QSOLOGGED @@ -751,7 +745,6 @@ def PropMode(self, val): class WSClose(_WSPacket): """Packet Type 6 Close (Out/In)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.CLOSE @@ -759,7 +752,6 @@ def __init__(self, pkt=None): class WSReplay(_WSPacket): """Packet Type 7 Replay (In)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.REPLAY @@ -772,7 +764,6 @@ class WSHaltTx(_WSPacket): self.mode = False Will stop the transmission immediately """ - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.HALTTX @@ -794,7 +785,6 @@ def mode(self, val): class WSFreeText(_WSPacket): """Packet Type 9 Free Text (In)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.FREETEXT @@ -825,7 +815,6 @@ def send(self, val): class WSWSPRDecode(_WSPacket): """Packet Type 10 WSPR Decode (Out)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.WSPRDECODE @@ -833,7 +822,6 @@ def __init__(self, pkt=None): class WSLocation(_WSPacket): """Packet Type 11 Location (In)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.LOCATION @@ -841,7 +829,6 @@ def __init__(self, pkt=None): class WSADIF(_WSPacket): """Packet Type 12 Logged ADIF (Out)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.LOGGEDADIF @@ -875,7 +862,6 @@ class WSHighlightCallsign(_WSPacket): Foreground Color QColor Highlight last bool """ - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.HIGHLIGHTCALLSIGN @@ -935,7 +921,6 @@ def HighlightLast(self, val): class WSSwitchConfiguration(_WSPacket): """Packet Type 14 Switch Configuration (In)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.SWITCHCONFIGURATION @@ -943,7 +928,6 @@ def __init__(self, pkt=None): class WSConfigure(_WSPacket): """Packet Type 15 Configure (In)""" - def __init__(self, pkt=None): super().__init__(pkt) self._packet_type = PacketType.CONFIGURE