Skip to content

Commit

Permalink
Remove empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
0x9900 committed Nov 11, 2024
1 parent 7861080 commit 04dfdfe
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions wsjtx.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -751,15 +745,13 @@ 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


class WSReplay(_WSPacket):
"""Packet Type 7 Replay (In)"""

def __init__(self, pkt=None):
super().__init__(pkt)
self._packet_type = PacketType.REPLAY
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -825,23 +815,20 @@ 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


class WSLocation(_WSPacket):
"""Packet Type 11 Location (In)"""

def __init__(self, pkt=None):
super().__init__(pkt)
self._packet_type = PacketType.LOCATION


class WSADIF(_WSPacket):
"""Packet Type 12 Logged ADIF (Out)"""

def __init__(self, pkt=None):
super().__init__(pkt)
self._packet_type = PacketType.LOGGEDADIF
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -935,15 +921,13 @@ 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


class WSConfigure(_WSPacket):
"""Packet Type 15 Configure (In)"""

def __init__(self, pkt=None):
super().__init__(pkt)
self._packet_type = PacketType.CONFIGURE
Expand Down

0 comments on commit 04dfdfe

Please sign in to comment.