Skip to content

Commit 7a7ee66

Browse files
authored
Bug fix. There was a comma misplaced. (#467)
Thanks for fixing this!
1 parent 6add9a7 commit 7a7ee66

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/adwords/v201809/basic_operations/update_keyword.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ def main(client, ad_group_id, criterion_id):
6969
'"%s" currently has bids:'
7070
% (criterion['adGroupId'], criterion['criterion']['id']))
7171
for bid in criterion['biddingStrategyConfiguration']['bids']:
72-
print('\tType: "%s", value: %s' % (bid['Bids.Type'],)
73-
bid['bid']['microAmount'])
72+
print('\tType: "%s", value: %s' % (bid['Bids.Type']), bid['bid']['microAmount'])
7473
else:
7574
print('No ad group criteria were updated.')
7675

0 commit comments

Comments
 (0)