Skip to content

Commit 2aa156f

Browse files
authored
Merge pull request #102 from zizzic/develop_for_DAG_fix_by_youngho
[fix] change json key to lowercase
2 parents 4e640f6 + bd15c10 commit 2aa156f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dags/game/game_rating_to_s3.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ def get_rating(app_id):
3131
if reviewdesc_short == []:
3232
return {
3333
"game_id": app_id,
34-
"ALL_POSITIVE_NUM": 0,
35-
"ALL_POSITIVE_PERCENT": 0,
36-
"RECENT_POSITIVE_NUM": 0,
37-
"RECENT_POSITIVE_PERCENT": 0,
34+
"all_positive_num": 0,
35+
"all_positive_percent": 0,
36+
"recent_positive_num": 0,
37+
"recent_positive_percent": 0,
3838
}
3939

4040
recent_reviews = None

0 commit comments

Comments
 (0)