From ed3e3ef0080cf873840204f09e36c8615f420d61 Mon Sep 17 00:00:00 2001 From: Calum Andrew Morrell Date: Wed, 5 Nov 2025 14:57:06 +0000 Subject: [PATCH] correct typo in max_length --- accounts/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/models.py b/accounts/models.py index a14cc23..8e891f1 100644 --- a/accounts/models.py +++ b/accounts/models.py @@ -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):