File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 77A Python library for interacting with the Twitter API.
88"""
99
10- __version__ = '1.7.2 '
10+ __version__ = '1.7.3 '
1111
1212from ._captcha import Capsolver
1313from .bookmark import BookmarkFolder
Original file line number Diff line number Diff line change @@ -424,7 +424,7 @@ def logout(self) -> Response:
424424 """
425425 Logs out of the currently logged-in account.
426426 """
427- _ , response = self .http . post (
427+ _ , response = self .post (
428428 Endpoint .LOGOUT ,
429429 headers = self ._base_headers
430430 )
Original file line number Diff line number Diff line change @@ -5240,7 +5240,9 @@ async def _update_subscriptions(
52405240
52415241 return _payload_from_data (response )
52425242
5243- async def _get_user_state (self ) -> Literal ['normal' , 'bounced' , 'suspended' ]:
5243+ async def _get_user_state (
5244+ self
5245+ ) -> Literal ['normal' , 'bounced' , 'suspended' ]:
52445246 response , _ = await self .get (
52455247 Endpoint .USER_STATE ,
52465248 headers = self ._base_headers
You can’t perform that action at this time.
0 commit comments