lint: linted

This commit is contained in:
Андрей Сумин
2025-03-01 02:35:09 +03:00
parent 999f5b0690
commit 33b081e433
7 changed files with 28 additions and 25 deletions
+3 -1
View File
@@ -13,7 +13,9 @@ class User(BaseModel):
username = models.SlugField(unique=True, verbose_name="Юзернейм")
password = models.TextField(verbose_name="Пароль")
status = models.CharField(max_length=10, choices=UserRole, default="student")
status = models.CharField(
max_length=10, choices=UserRole, default="student"
)
def __str__(self):
return self.username