diff --git a/django/contrib/auth/management/commands/createsuperuser.py b/django/contrib/auth/management/commands/createsuperuser.py index 5eea1cd83ed90..8e9c547253971 100644 --- a/django/contrib/auth/management/commands/createsuperuser.py +++ b/django/contrib/auth/management/commands/createsuperuser.py @@ -18,11 +18,8 @@ class Command(BaseCommand): def __init__(self, *args, **kwargs): - """ - an __init__ method is here largely to support swapping out custom user - models in tests - """ - + # an __init__ method is here largely to support swapping out custom user + # models in tests super(Command, self).__init__(*args, **kwargs) self.UserModel = get_user_model() self.required_fields = self.UserModel.REQUIRED_FIELDS