(i: int)
| 288 | |
| 289 | |
| 290 | def u_to_attr(i: int) -> attr_value_pb2.AttrValue: |
| 291 | check_argument(isinstance(i, int) and i >= 0) |
| 292 | return attr_value_pb2.AttrValue(u=i) |
| 293 | |
| 294 | |
| 295 | def b_to_attr(b: bool) -> attr_value_pb2.AttrValue: |
nothing calls this directly
no test coverage detected