(
number: int, group: Optional[str] = None, optional: bool = False
)
| 229 | |
| 230 | |
| 231 | def int32_field( |
| 232 | number: int, group: Optional[str] = None, optional: bool = False |
| 233 | ) -> Any: |
| 234 | return dataclass_field(number, TYPE_INT32, group=group, optional=optional) |
| 235 | |
| 236 | |
| 237 | def int64_field( |
nothing calls this directly
no test coverage detected