Skip to content

Commit

Permalink
linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Sep 12, 2023
1 parent 007c8b9 commit b19d0e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/processors/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def export_for_search(data: dict, path: str) -> None:
}.get(entry["type"]),
"parent_building_names": parent_building_names,
# For all other parents, only the ids and their keywords (TODO) are searchable
"parent_keywords": [maybe_slugify(value) for value in parent_building_names+entry["parents"][1:]],
"parent_keywords": [maybe_slugify(value) for value in parent_building_names + entry["parents"][1:]],
"campus": maybe_slugify(campus_name),
"address": entry.get("tumonline_data", {}).get("address", None),
"usage": maybe_slugify(entry.get("usage", {}).get("name", None)),
Expand Down

0 comments on commit b19d0e3

Please sign in to comment.