Skip to content

Commit

Permalink
sample: fix parent path
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 authored and dandhlee committed Nov 14, 2022
1 parent 8fe1492 commit 933827e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion talent/job_search_commute_search.py
Original file line number Diff line number Diff line change
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 933827e

Please sign in to comment.