Skip to content

Commit

Permalink
remove __str__ impl
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Aug 30, 2023
1 parent 7ac648e commit 3e4d8d6
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions spacepackets/cfdp/tlv.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,12 +406,6 @@ def from_tlv(cls, cfdp_tlv: CfdpTlv) -> MessageToUserTlv:
msg_to_user_tlv.tlv = cfdp_tlv
return msg_to_user_tlv

def __str__(self):
if self.is_reserved_cfdp_message():
return "Reserved CFDP Message to user TLV"
else:
return "Custom Message to user TLV"


class FlowLabelTlv(AbstractTlvBase):
TLV_TYPE = TlvType.FLOW_LABEL
Expand Down

0 comments on commit 3e4d8d6

Please sign in to comment.