Skip to content

Commit 7c763e4

Browse files
fix typos (googleads#450)
1 parent 09be83d commit 7c763e4

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

examples/extensions/add_affiliate_location_extensions.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def _remove_location_extension_feeds(client, customer_id):
128128
# To remove a location extension feed, you need to:
129129
# 1. Remove the CustomerFeed so that the location extensions from the feed
130130
# stop serving.
131-
# 2. Remove the feed so that Google Ads will no longer sync from the GM
131+
# 2. Remove the feed so that Google Ads will no longer sync from the GMB
132132
# account.
133133
# Optional: You may also want to remove the CampaignFeeds and AdGroupFeeds.
134134
old_customer_feeds = _get_location_extension_customer_feeds(
@@ -290,7 +290,7 @@ def _get_affiliate_location_extension_feed_mapping(
290290

291291
# Return the feed mapping that results from the search.
292292
# It is possible that the feed is not yet ready, so we catch the exception
293-
# if there the feed mapping is not yet available.
293+
# if the feed mapping is not yet available.
294294
try:
295295
row = next(iter(search_results))
296296
except StopIteration:
@@ -392,8 +392,10 @@ def _create_campaign_feed(
392392
"CampaignService"
393393
).campaign_path(customer_id, campaign_id)
394394

395-
mutate_campaign_feeds_response = campaign_feed_service.mutate_campaign_feeds(
396-
customer_id=customer_id, operations=[campaign_feed_operation]
395+
mutate_campaign_feeds_response = (
396+
campaign_feed_service.mutate_campaign_feeds(
397+
customer_id=customer_id, operations=[campaign_feed_operation]
398+
)
397399
)
398400

399401
# Display the result.
@@ -470,7 +472,10 @@ def _get_attribute_id_for_chain_id(client, feed_mapping):
470472

471473
try:
472474
main(
473-
googleads_client, args.customer_id, args.chain_id, args.campaign_id,
475+
googleads_client,
476+
args.customer_id,
477+
args.chain_id,
478+
args.campaign_id,
474479
)
475480
except GoogleAdsException as ex:
476481
print(

0 commit comments

Comments
 (0)