(self, from_packet)
| 342 | """ |
| 343 | |
| 344 | def __init__(self, from_packet): |
| 345 | if not from_packet.is_load_local_packet(): |
| 346 | raise ValueError( |
| 347 | f"Cannot create '{self.__class__}' object from invalid packet type" |
| 348 | ) |
| 349 | |
| 350 | self.packet = from_packet |
| 351 | self.filename = self.packet.get_all_data()[1:] |
| 352 | if DEBUG: |
| 353 | print("filename=", self.filename) |
| 354 | |
| 355 | def __getattr__(self, key): |
| 356 | return getattr(self.packet, key) |
nothing calls this directly
no test coverage detected