(self)
| 7 | username = fields.CharField(max_length=63) |
| 8 | |
| 9 | def __str__(self) -> str: |
| 10 | return f"User {self.id}: {self.username}" |
| 11 | |
| 12 | |
| 13 | UserPydanticOut = pydantic_model_creator(Users, name="UserOut") |
nothing calls this directly
no outgoing calls
no test coverage detected