Run linter and formatting changes

This commit is contained in:
Erin 2023-10-12 09:56:18 -07:00
parent 67dacffa9f
commit ecc4d6c89e
No known key found for this signature in database
GPG key ID: 1CAD275313C62460
4 changed files with 13 additions and 4 deletions

View file

@ -342,6 +342,12 @@ class DomainInvitationAdmin(ListHeaderAdmin):
]
search_help_text = "Search by email or domain."
# Mark the FSM field 'status' as readonly
# to allow admin users to create Domain Invitations
# without triggering the FSM Transition Not Allowed
# error.
readonly_fields = ["status"]
class DomainInformationAdmin(ListHeaderAdmin):
"""Customize domain information admin class."""