(number: int, group: Optional[str] = None, optional: bool = False)
| 225 | |
| 226 | |
| 227 | def bool_field(number: int, group: Optional[str] = None, optional: bool = False) -> Any: |
| 228 | return dataclass_field(number, TYPE_BOOL, group=group, optional=optional) |
| 229 | |
| 230 | |
| 231 | def int32_field( |
nothing calls this directly
no test coverage detected