From 1ac66b4697555c0f64f5f7cc6dc709ac6ff7d4f4 Mon Sep 17 00:00:00 2001 From: Calum Andrew Morrell Date: Wed, 5 Nov 2025 14:58:00 +0000 Subject: [PATCH] corrected typo in help_text --- accounts/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/models.py b/accounts/models.py index 8e891f1..bece7cc 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_length=200, help_test="Display name", blank=True, null=True + max_length=200, help_text="Display name", blank=True, null=True ) def __str__(self):