(
number: int, group: Optional[str] = None, optional: bool = False
)
| 271 | |
| 272 | |
| 273 | def double_field( |
| 274 | number: int, group: Optional[str] = None, optional: bool = False |
| 275 | ) -> Any: |
| 276 | return dataclass_field(number, TYPE_DOUBLE, group=group, optional=optional) |
| 277 | |
| 278 | |
| 279 | def fixed32_field( |
nothing calls this directly
no test coverage detected