From b19d0e3d676791df715acc2d4cbc2568183dc27c Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Tue, 12 Sep 2023 23:49:20 +0200 Subject: [PATCH] linting fix --- data/processors/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/processors/export.py b/data/processors/export.py index 17ffd4a69..95cc00745 100644 --- a/data/processors/export.py +++ b/data/processors/export.py @@ -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)),