Skip to content

Commit c152b93

Browse files
removed some typo error at marshaling of tokens_details
1 parent 820a337 commit c152b93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deepgram/clients/manage/v1/response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def __getitem__(self, key):
253253
if _dict["details"] is not None:
254254
_dict["details"] = Details.from_dict(_dict["details"])
255255
if _dict["token_details"] is not None:
256-
_dict["details"] = [
256+
_dict["token_details"] = [
257257
TokenDetail.from_dict(token_details) for _, token_details in _dict["token_details"].items()
258258
]
259259
return _dict[key]
@@ -262,7 +262,7 @@ def __getitem__(self, key):
262262
@dataclass_json
263263
@dataclass
264264
class UsageRequest:
265-
ProjectUUID: Optional[str] = ""
265+
project_uuid: Optional[str] = ""
266266
request_id: Optional[str] = ""
267267
created: Optional[str] = ""
268268
path: Optional[str] = ""

0 commit comments

Comments
 (0)