(number: int, group: Optional[str] = None, optional: bool = False)
| 221 | |
| 222 | |
| 223 | def enum_field(number: int, group: Optional[str] = None, optional: bool = False) -> Any: |
| 224 | return dataclass_field(number, TYPE_ENUM, group=group, optional=optional) |
| 225 | |
| 226 | |
| 227 | def bool_field(number: int, group: Optional[str] = None, optional: bool = False) -> Any: |
nothing calls this directly
no test coverage detected