-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: removed extra ")" from the file (#329)
- Loading branch information
1 parent
a4bd355
commit d2e2b51
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -239,7 +239,7 @@ responses = { | |
500: 'Something went wrong! Please contact [email protected]' | ||
} | ||
|
||
response = requests.request("PUT", url, headers=headers, data=json.dumps(payload), params=json.dumps(params))) | ||
response = requests.request("PUT", url, headers=headers, data=json.dumps(payload), params=json.dumps(params)) | ||
|
||
if response.status_code == 201: | ||
# Successful API execution | ||
|
@@ -442,4 +442,4 @@ Here value of `X` can be found in [FAQ](/docs/faq). | |
|
||
:::caution | ||
You must wait for the job to complete processing before you proceed with getting the Conversation Intelligence. If you immediately make a GET request to Conversation API, it is possible that you'll receive incomplete insights. Therefore, ensure that you wait for the job to complete. | ||
::: | ||
::: |