Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
d60 authored Apr 18, 2024
1 parent 3318202 commit 0df85a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twikit/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1246,7 +1246,7 @@ def _get_tweet_detail(self, tweet_id: str, cursor: str | None):

def _get_more_replies(self, tweet_id: str, cursor: str) -> Result[Tweet]:
response = self._get_tweet_detail(tweet_id, cursor)
entries = find_dict(response, 'entries')
entries = find_dict(response, 'entries')[0]

results = []
for entry in entries:
Expand Down

0 comments on commit 0df85a5

Please sign in to comment.