Skip to content

Commit f593732

Browse files
author
jpaten
committed
fix: updated outbound sheets link to breaking change in get_flat_data_df (#4336)
1 parent c5a7133 commit f593732

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

analytics/analytics_package/analytics/sheets_elements.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ def get_outbound_sheets_df(analytics_params):
4747
pd.set_option('future.no_silent_downcasting', True)
4848
# Get the builtin "Click" event
4949
df_builtin_links = get_flat_data_df(
50-
analytics_params,
5150
[METRIC_EVENT_COUNT, METRIC_TOTAL_USERS],
5251
[DIMENSION_PAGE_PATH, DIMENSION_BUILTIN_URL, DIMENSION_EVENT_NAME],
53-
remove_matches=[None, r"\s*", None]
52+
remove_matches=[None, r"\s*", None],
53+
**analytics_params,
5454
).groupby(
5555
[DIMENSION_PAGE_PATH["alias"], DIMENSION_BUILTIN_URL["alias"]]
5656
).sum().reset_index()

0 commit comments

Comments
 (0)