Unlocks all things which were locked due to ARMv7, etc

This commit is contained in:
Trenton H
2023-09-08 08:53:07 -07:00
parent 3205bb3bdf
commit d532913d56
12 changed files with 1121 additions and 1093 deletions

View File

@@ -43,7 +43,7 @@ class StandardPagination(PageNumberPagination):
if hasattr(self.page.paginator.object_list, "saved_results"):
results_page = self.page.paginator.object_list.saved_results[0]
if results_page is not None:
for i in range(0, len(results_page.results.docs())):
for i in range(len(results_page.results.docs())):
try:
fields = results_page.results.fields(i)
if "id" in fields: