Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Commit

Permalink
Fix api.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SecondThundeR committed Sep 3, 2022
1 parent dcb3821 commit 2211e02
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions shikithon/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2022,7 +2022,6 @@ def message(self, message_id: int) -> Optional[Message]:
:return: Message info
:rtype: Optional[Message]
"""
logger.debug('Executing "/api/messages/:id" method')
response: Dict[str,
Any] = self._request(self._endpoints.message(message_id),
headers=self._authorization_header)
Expand Down Expand Up @@ -2474,7 +2473,6 @@ def active_users(self) -> Optional[List[int]]:
:return: List of IDs of active users
:rtype: Optional[List[int]]
"""
logger.debug('Executing "/api/stats/active_users" method')
response: List[int] = self._request(self._endpoints.active_users)
return Utils.validate_return_data(response)

Expand Down

0 comments on commit 2211e02

Please sign in to comment.