(
number: int, group: Optional[str] = None, optional: bool = False
)
| 277 | |
| 278 | |
| 279 | def fixed32_field( |
| 280 | number: int, group: Optional[str] = None, optional: bool = False |
| 281 | ) -> Any: |
| 282 | return dataclass_field(number, TYPE_FIXED32, group=group, optional=optional) |
| 283 | |
| 284 | |
| 285 | def fixed64_field( |
nothing calls this directly
no test coverage detected