Skip to content

Commit 08308c8

Browse files
authored
Update http.py
1 parent f817c95 commit 08308c8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

vvclient/http.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,6 @@ async def core_versions(self) -> List[str]:
6161

6262
async def initialize_speaker(self, params: Dict[str, Union[str, int]]) -> None:
6363
return await self.request(Route("POST", "/initialize_speaker"), params=params)
64+
65+
async def is_initialized_speaker(self, params: Dict[str, Union[str, int]) -> bool:
66+
return await self.request(Route("GET", "/is_initialized_speaker"), params=params)

0 commit comments

Comments
 (0)