add docstrings

This commit is contained in:
2025-09-09 16:32:32 +02:00
parent aca7042c56
commit 286f1cb57b
5 changed files with 13 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ from django.contrib.auth.models import User
class Profile(models.Model):
"""
Defines a service user
Model of a user of the service
"""
user = models.OneToOneField(User, on_delete=models.CASCADE)
favorite_city = models.CharField(max_length=64, blank=True)