From a1827e8225202ab293d058d56089b608a3629bcf Mon Sep 17 00:00:00 2001 From: ziv Date: Fri, 2 Aug 2024 13:06:17 +0300 Subject: [PATCH] Load only symbol and names to city table. --- anyway/parsers/cities.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anyway/parsers/cities.py b/anyway/parsers/cities.py index 879bcb73..da658b49 100644 --- a/anyway/parsers/cities.py +++ b/anyway/parsers/cities.py @@ -50,8 +50,8 @@ def get_city_data_chunks(self, url: str, chunk_size: int) -> Iterable[List[Dict[ "heb_name": item[CITY_NAME], "yishuv_symbol": item[YISHUV_SYMBOL], "eng_name": item[CITY_NAME_EN], - "napa": item[NAPA], - "municipal_stance": item[MUNICIPAL_STANCE], + # "napa": item[NAPA], + # "municipal_stance": item[MUNICIPAL_STANCE], } chunk.append(city_entry) if len(chunk) == chunk_size: