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