Skip to content

Commit 4c25ab7

Browse files
committed
use lower country code
1 parent 9b8197e commit 4c25ab7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adscrawler/app_stores/scrape_stores.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ def process_chunk(
7777
result_dict = scrape_app(
7878
store=store,
7979
store_id=row["store_id"],
80-
country=row["country_code"],
81-
language=row["language"],
80+
country=row["country_code"].lower(),
81+
language=row["language"].lower(),
8282
)
8383
chunk_results.append(result_dict)
8484
except Exception as e:

0 commit comments

Comments
 (0)