(b: bool)
| 293 | |
| 294 | |
| 295 | def b_to_attr(b: bool) -> attr_value_pb2.AttrValue: |
| 296 | check_argument(isinstance(b, bool)) |
| 297 | return attr_value_pb2.AttrValue(b=b) |
| 298 | |
| 299 | |
| 300 | def s_to_attr(s: str) -> attr_value_pb2.AttrValue: |
nothing calls this directly
no test coverage detected