Skip to content

Commit

Permalink
Fix csv building
Browse files Browse the repository at this point in the history
  • Loading branch information
CamLamb committed Dec 16, 2024
1 parent c493b61 commit 796da73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def export_search(request: HttpRequest, category: str) -> HttpResponse:
},
}
export_mapping = None
for k, v in SEARCH_EXPORT_MAPPINGS:
for k, v in SEARCH_EXPORT_MAPPINGS.items():
if issubclass(search_model, k):
export_mapping = v

Expand Down

0 comments on commit 796da73

Please sign in to comment.