correct typo in max_length

dev
Calum Andrew Morrell 2025-11-05 14:57:06 +00:00
parent d95637c8bf
commit ed3e3ef008
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from django.db import models
class User(AbstractUser):
display_name = models.CharField(
max_lenth=200, help_test="Display name", blank=True, null=True
max_length=200, help_test="Display name", blank=True, null=True
)
def __str__(self):