✏️(project) fix minor typos

Found typos and fixed them.
This commit is contained in:
Lebaud Antoine
2024-02-02 15:36:24 +01:00
committed by aleb_the_flash
parent ec2fcaa1dd
commit c117f67952
7 changed files with 14 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
"""
Management command overrring the "createsuperuser" command to allow creating users
Management command overriding the "createsuperuser" command to allow creating users
with their email and no username.
"""
from django.contrib.auth import get_user_model
@@ -9,7 +9,7 @@ User = get_user_model()
class Command(BaseCommand):
"""Management command to create super users from an email and a password"""
"""Management command to create superusers from an email and a password"""
help = "Create a superuser with an email and a password"