satisfied linter

This commit is contained in:
David Kennedy 2024-03-08 14:52:01 -05:00
parent 139e7f1183
commit 29e3275a87
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B

View file

@ -1188,7 +1188,7 @@ class DomainInformationInline(admin.StackedInline):
fieldsets = copy.deepcopy(DomainInformationAdmin.fieldsets)
# remove .gov domain from fieldset
for index, (title, _) in enumerate(fieldsets):
for index, (title, f) in enumerate(fieldsets):
if title == ".gov domain":
del fieldsets[index]
break