|
@@ -207,7 +207,8 @@ def rank_for_base(run_dt, run_hour, project, stats_table, rank_table, stg_key):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- gh_ids_str = ','.join(f'"{x}"' for x in GH_IDS)
|
|
+ non_default_ids = list(filter(lambda x: x != 'default', GH_IDS))
|
|
|
|
+ gh_ids_str = ','.join(f'"{x}"' for x in non_default_ids)
|
|
stats_df = stats_df.query(f'gh_id in ({gh_ids_str})')
|
|
stats_df = stats_df.query(f'gh_id in ({gh_ids_str})')
|
|
|
|
|
|
stats_with_strategy_df = stats_df \
|
|
stats_with_strategy_df = stats_df \
|