Skip to content

Commit 46994af

Browse files
fix(ads): ensure that accounts are normalized to strings
1 parent b60d4e8 commit 46994af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/community/google/ads/garf/community/google/ads/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
'GoogleAdsApiReportFetcher',
2323
]
2424

25-
__version__ = '1.0.1'
25+
__version__ = '1.0.2'

libs/community/google/ads/garf/community/google/ads/report_fetcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def fetch(
9292
account = account.replace('-', '')
9393
account = account.split(',')
9494
else:
95-
account = [a.replace('-', '') for a in account]
95+
account = [str(a).replace('-', '') for a in account]
9696
if not args:
9797
args = {}
9898
if expand_mcc or customer_ids_query:

0 commit comments

Comments
 (0)