formatted for linter

This commit is contained in:
David Kennedy 2024-08-22 17:25:52 -04:00
parent 6286ae96be
commit 4a104b6ff6
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B

View file

@ -60,7 +60,7 @@ class CustomChangeListForPortfolioFiltering(ChangeList):
# ignored. # ignored.
# Remove portfolio so that it does not error as an invalid # Remove portfolio so that it does not error as an invalid
# filter parameter. # filter parameter.
ignored_params = list(IGNORED_PARAMS) + ['portfolio'] ignored_params = list(IGNORED_PARAMS) + ["portfolio"]
for ignored in ignored_params: for ignored in ignored_params:
if ignored in lookup_params: if ignored in lookup_params:
del lookup_params[ignored] del lookup_params[ignored]
@ -2270,18 +2270,18 @@ class DomainRequestAdmin(ListHeaderAdmin, ImportExportModelAdmin):
# objects rather than Contact objects. # objects rather than Contact objects.
use_sort = db_field.name != "senior_official" use_sort = db_field.name != "senior_official"
return super().formfield_for_foreignkey(db_field, request, use_admin_sort_fields=use_sort, **kwargs) return super().formfield_for_foreignkey(db_field, request, use_admin_sort_fields=use_sort, **kwargs)
def get_queryset(self, request): def get_queryset(self, request):
"""Custom get_queryset to filter by portfolio if portfolio is in the """Custom get_queryset to filter by portfolio if portfolio is in the
request params.""" request params."""
qs = super().get_queryset(request) qs = super().get_queryset(request)
# Check if a 'portfolio' parameter is passed in the request # Check if a 'portfolio' parameter is passed in the request
portfolio_id = request.GET.get('portfolio') portfolio_id = request.GET.get("portfolio")
if portfolio_id: if portfolio_id:
# Further filter the queryset by the portfolio # Further filter the queryset by the portfolio
qs = qs.filter(portfolio=portfolio_id) qs = qs.filter(portfolio=portfolio_id)
return qs return qs
def get_changelist(self, request, **kwargs): def get_changelist(self, request, **kwargs):
""" """
Return the ChangeList class for use on the changelist page. Return the ChangeList class for use on the changelist page.
@ -2740,18 +2740,18 @@ class DomainAdmin(ListHeaderAdmin, ImportExportModelAdmin):
): ):
return True return True
return super().has_change_permission(request, obj) return super().has_change_permission(request, obj)
def get_queryset(self, request): def get_queryset(self, request):
"""Custom get_queryset to filter by portfolio if portfolio is in the """Custom get_queryset to filter by portfolio if portfolio is in the
request params.""" request params."""
qs = super().get_queryset(request) qs = super().get_queryset(request)
# Check if a 'portfolio' parameter is passed in the request # Check if a 'portfolio' parameter is passed in the request
portfolio_id = request.GET.get('portfolio') portfolio_id = request.GET.get("portfolio")
if portfolio_id: if portfolio_id:
# Further filter the queryset by the portfolio # Further filter the queryset by the portfolio
qs = qs.filter(domain_info__portfolio=portfolio_id) qs = qs.filter(domain_info__portfolio=portfolio_id)
return qs return qs
def get_changelist(self, request, **kwargs): def get_changelist(self, request, **kwargs):
""" """
Return the ChangeList class for use on the changelist page. Return the ChangeList class for use on the changelist page.
@ -3022,7 +3022,7 @@ class PortfolioAdmin(ListHeaderAdmin):
return self.get_field_links_as_list(queryset, "suborganization") return self.get_field_links_as_list(queryset, "suborganization")
suborganizations.short_description = "Suborganizations" # type: ignore suborganizations.short_description = "Suborganizations" # type: ignore
def domains(self, obj: models.Portfolio): def domains(self, obj: models.Portfolio):
"""Returns the count of domains with a link to view them in the admin.""" """Returns the count of domains with a link to view them in the admin."""
domain_count = obj.get_domains().count() # Count the related domains domain_count = obj.get_domains().count() # Count the related domains
@ -3045,7 +3045,7 @@ class PortfolioAdmin(ListHeaderAdmin):
# Create a clickable link with the domain request count # Create a clickable link with the domain request count
return format_html('<a href="{}">{} Domain Requests</a>', url, domain_request_count) return format_html('<a href="{}">{} Domain Requests</a>', url, domain_request_count)
return "No Domain Requests" return "No Domain Requests"
domain_requests.short_description = "Domain requests" # type: ignore domain_requests.short_description = "Domain requests" # type: ignore
# Creates select2 fields (with search bars) # Creates select2 fields (with search bars)