Skip to content

Commit

Permalink
add missing return line
Browse files Browse the repository at this point in the history
  • Loading branch information
claire-peters committed Aug 8, 2024
1 parent dab5ae8 commit 1749eb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion coldfront/plugins/sftocf/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,7 @@ def allocations(self):
status__name__in=allocation_statuses,
resources__in=self.connection_obj.get_corresponding_coldfront_resources()
)
return self._allocations

@property
def allocationquerymatches(self):
Expand Down Expand Up @@ -665,7 +666,7 @@ def clean_collected_data(self):
return self.allocationquerymatches, user_models

def update_coldfront_objects(self, user_models):
"""update coldfront objects"""
"""update coldfront allocation objects"""
allocation_attribute_types = AllocationAttributeType.objects.all()

quota_b_attrtype = allocation_attribute_types.get(name='Quota_In_Bytes')
Expand Down

0 comments on commit 1749eb2

Please sign in to comment.