| 12 | |
| 13 | |
| 14 | class TagValue(Object): |
| 15 | def __init__(self, tag: str = None, value: str = None): |
| 16 | self.tag = str(tag) |
| 17 | self.value = str(value) |
| 18 | |
| 19 | def __str__(self): |
| 20 | # this is not only used for Python dump but when encoding to send |
| 21 | # so don't change it lightly ! |
| 22 | return f"{self.tag}={self.value};" |
no outgoing calls
no test coverage detected