DEV: returns the field instance from the name of the field
(self, fld)
| 386 | pass |
| 387 | |
| 388 | def get_field(self, fld): |
| 389 | # type: (str) -> AnyField |
| 390 | """DEV: returns the field instance from the name of the field""" |
| 391 | return self.fieldtype[fld] |
| 392 | |
| 393 | def add_payload(self, payload): |
| 394 | # type: (Union[Packet, bytes]) -> None |
no outgoing calls
no test coverage detected