We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b8197e commit 4c25ab7Copy full SHA for 4c25ab7
adscrawler/app_stores/scrape_stores.py
@@ -77,8 +77,8 @@ def process_chunk(
77
result_dict = scrape_app(
78
store=store,
79
store_id=row["store_id"],
80
- country=row["country_code"],
81
- language=row["language"],
+ country=row["country_code"].lower(),
+ language=row["language"].lower(),
82
)
83
chunk_results.append(result_dict)
84
except Exception as e:
0 commit comments