diff options
| author | Tim Graham <timograham@gmail.com> | 2016-03-28 18:33:29 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-08 09:51:06 -0400 |
| commit | df8d8d4292684d6ffa7474f1e201aed486f02b53 (patch) | |
| tree | c661bf9b33de5288afe4f63347a2a9c768ef98eb /django/contrib/auth/apps.py | |
| parent | 2956e2f5e3f63d279f5dae2a995265364d3e6db1 (diff) | |
Fixed E128 flake8 warnings in django/.
Diffstat (limited to 'django/contrib/auth/apps.py')
| -rw-r--r-- | django/contrib/auth/apps.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/django/contrib/auth/apps.py b/django/contrib/auth/apps.py index 79c44e78f2..d5590158cf 100644 --- a/django/contrib/auth/apps.py +++ b/django/contrib/auth/apps.py @@ -12,7 +12,9 @@ class AuthConfig(AppConfig): verbose_name = _("Authentication and Authorization") def ready(self): - post_migrate.connect(create_permissions, - dispatch_uid="django.contrib.auth.management.create_permissions") + post_migrate.connect( + create_permissions, + dispatch_uid="django.contrib.auth.management.create_permissions" + ) checks.register(check_user_model, checks.Tags.models) checks.register(check_models_permissions, checks.Tags.models) |
