Skip to content

Commit

Permalink
fix: updated outbound sheets link to breaking change in get_flat_data…
Browse files Browse the repository at this point in the history
…_df (#4336)
  • Loading branch information
jpaten committed Jan 15, 2025
1 parent c5a7133 commit f593732
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analytics/analytics_package/analytics/sheets_elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ def get_outbound_sheets_df(analytics_params):
pd.set_option('future.no_silent_downcasting', True)
# Get the builtin "Click" event
df_builtin_links = get_flat_data_df(
analytics_params,
[METRIC_EVENT_COUNT, METRIC_TOTAL_USERS],
[DIMENSION_PAGE_PATH, DIMENSION_BUILTIN_URL, DIMENSION_EVENT_NAME],
remove_matches=[None, r"\s*", None]
remove_matches=[None, r"\s*", None],
**analytics_params,
).groupby(
[DIMENSION_PAGE_PATH["alias"], DIMENSION_BUILTIN_URL["alias"]]
).sum().reset_index()
Expand Down

0 comments on commit f593732

Please sign in to comment.