diff options
| author | django-bot <ops@djangoproject.com> | 2022-02-03 20:24:19 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-02-07 20:37:05 +0100 |
| commit | 9c19aff7c7561e3a82978a272ecdaad40dda5c00 (patch) | |
| tree | f0506b668a013d0063e5fba3dbf4863b466713ba /tests/timezones/admin.py | |
| parent | f68fa8b45dfac545cfc4111d4e52804c86db68d3 (diff) | |
Refs #33476 -- Reformatted code with Black.
Diffstat (limited to 'tests/timezones/admin.py')
| -rw-r--r-- | tests/timezones/admin.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/timezones/admin.py b/tests/timezones/admin.py index 4d3e4ca2fe..6761c2d710 100644 --- a/tests/timezones/admin.py +++ b/tests/timezones/admin.py @@ -4,13 +4,13 @@ from .models import Event, Timestamp class EventAdmin(admin.ModelAdmin): - list_display = ('dt',) + list_display = ("dt",) class TimestampAdmin(admin.ModelAdmin): - readonly_fields = ('created', 'updated') + readonly_fields = ("created", "updated") -site = admin.AdminSite(name='admin_tz') +site = admin.AdminSite(name="admin_tz") site.register(Event, EventAdmin) site.register(Timestamp, TimestampAdmin) |
