Skip to content

Commit 7f29ce4

Browse files
committed
Address the comments
1 parent 7dcafc3 commit 7f29ce4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

examples/sample_identity_map_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
# which contains raw uid or the reason why it is unmapped
88

99
def _usage():
10-
print('Usage: python3 sample_sharing_client.py <base_url> <auth_key> <secret_key> <email_list>', file=sys.stderr)
10+
print('Usage: python3 sample_sharing_client.py <base_url> <auth_key> <secret_key> <email_1> <email_2> ... <email_n>'
11+
, file=sys.stderr)
1112
sys.exit(1)
1213

1314

@@ -35,4 +36,3 @@ def _usage():
3536
unmapped_identity = unmapped_identities.get(first_email)
3637
reason = unmapped_identity.get_reason()
3738
print('reason =', reason)
38-

uid2_client/identity_map_client.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
class IdentityMapClient:
11-
"""Client for interacting with UID2 Identity Map services
11+
"""Client for interacting with UID Identity Map services
1212
1313
You will need to have the base URL of the endpoint and a client API key
1414
and secret to consume web services.
@@ -21,12 +21,12 @@ def __init__(self, base_url, auth_key, secret_key):
2121
"""Create a new IdentityMapClient client.
2222
2323
Args:
24-
base_url (str): base URL for all requests to UID2 services (e.g. 'https://prod.uidapi.com')
25-
auth_key (str): authorization key for consuming the UID2 services
26-
secret_key (str): secret key for consuming the UID2 services
24+
base_url (str): base URL for all requests to UID services (e.g. 'https://prod.uidapi.com')
25+
auth_key (str): authorization key for consuming the UID services
26+
secret_key (str): secret key for consuming the UID services
2727
2828
Note:
29-
Your authorization key will determine which UID2 services you are allowed to use.
29+
Your authorization key will determine which UID services you are allowed to use.
3030
"""
3131
self._base_url = base_url
3232
self._auth_key = auth_key

0 commit comments

Comments
 (0)