Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
sample: fix parent path
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Sep 25, 2020
1 parent 14dc0ca commit ef045e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/snippets/job_search_commute_search.py
Expand Up @@ -30,7 +30,7 @@ def search_jobs(project_id, tenant_id):
project_id = project_id.decode("utf-8")
if isinstance(tenant_id, six.binary_type):
tenant_id = tenant_id.decode("utf-8")
parent = f"projects/{project_id}/tenants/{tenant_id}/"
parent = f"projects/{project_id}/tenants/{tenant_id}"
domain = "www.example.com"
session_id = "Hashed session identifier"
user_id = "Hashed user identifier"
Expand Down

0 comments on commit ef045e8

Please sign in to comment.