| 2811 | |
| 2812 | |
| 2813 | class LEIntEnumField(EnumField[int]): |
| 2814 | def __init__(self, |
| 2815 | name, # type: str |
| 2816 | default, # type: Optional[int] |
| 2817 | enum, # type: _EnumType[int] |
| 2818 | ): |
| 2819 | # type: (...) -> None |
| 2820 | super(LEIntEnumField, self).__init__(name, default, enum, "<I") |
| 2821 | |
| 2822 | |
| 2823 | class XLEIntEnumField(LEIntEnumField): |
no outgoing calls
no test coverage detected