Skip to content

Commit

Permalink
Fix proxies setter to not be async... lol
Browse files Browse the repository at this point in the history
  • Loading branch information
isaackogan committed Oct 14, 2022
1 parent fa4b69f commit 0b45edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TikTokLive/client/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ async def proxies(self) -> Optional[Dict[str, str]]:
return self._http.proxies

@proxies.setter
async def proxies(self, proxies: Optional[Dict[str, str]]) -> None:
def proxies(self, proxies: Optional[Dict[str, str]]) -> None:
"""
Set the proxies to be used by the HTTP client (Not Websockets)
Expand Down

0 comments on commit 0b45edb

Please sign in to comment.