Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,10 @@ def expand_mcc(
raise GoogleAdsApiReportFetcherError(
f'No accounts found satisfying the follow query: {customer_ids_query}'
)
child_customer_ids = [
child_customer_ids = {
row[0] if isinstance(row, garf.core.report.GarfRow) else row
for row in child_customer_ids
]
}
span.set_attribute(
'accounts.child_accounts_conditioned', len(child_customer_ids)
)
Expand Down
Loading