Skip to content

Commit a297422

Browse files
Fix method call
1 parent 4d210b7 commit a297422

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/communication-services/tutorials/includes/hmac-header-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ request_uri = f"{resource_endpoint}{path_and_query}"
7777
# Endpoint identities?api-version=2021-03-07 accepts list of scopes as a body.
7878
scopes = ["chat"]
7979

80-
serialized_body = dumps(scopes)
80+
serialized_body = json.dumps(scopes)
8181
content = serialized_body.encode("utf-8")
8282
```
8383

0 commit comments

Comments
 (0)