Skip to content

Commit 27965b0

Browse files
authored
feat(sample): use CompositeData with IP for audiences (#11)
1 parent f673e2f commit 27965b0

6 files changed

Lines changed: 754 additions & 687 deletions

File tree

google/ads/datamanager_util/format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def format_email_address(self, email: str) -> str:
7979
parts = email.split("@")
8080
if len(parts) != 2:
8181
raise ValueError("Email is not of the form user@domain")
82-
(user, domain) = (parts[0], parts[1])
82+
user, domain = (parts[0], parts[1])
8383
if len(user) == 0:
8484
raise ValueError("Email address without the domain is empty")
8585
if len(domain) == 0:

0 commit comments

Comments
 (0)