(self)
| 1101 | @computed_field |
| 1102 | @property |
| 1103 | def triple_x(self) -> Annotated[int, PlainSerializer(lambda v: f'The triple of x is {v}', return_type=str)]: |
| 1104 | return self.two_x * 3 |
| 1105 | |
| 1106 | @computed_field |
| 1107 | @property |
nothing calls this directly
no test coverage detected