(self, name, default, uuid_fmt=FORMAT_BE)
| 3827 | FORMATS = (FORMAT_BE, FORMAT_LE, FORMAT_REV) |
| 3828 | |
| 3829 | def __init__(self, name, default, uuid_fmt=FORMAT_BE): |
| 3830 | # type: (str, Optional[int], int) -> None |
| 3831 | self.uuid_fmt = uuid_fmt |
| 3832 | self._check_uuid_fmt() |
| 3833 | Field.__init__(self, name, default, "16s") |
| 3834 | |
| 3835 | def _check_uuid_fmt(self): |
| 3836 | # type: () -> None |
nothing calls this directly
no test coverage detected