dsharma522

Results 3 issues of dsharma522

When I am trying to fetch the replies for a message via `client().iter_messages(channel, reply_to=msg_id)` , for some messages, i get the replies , but for some , it get the...

```python for conv in client.iter_messages(channel.id): if conv.reply_to: original_message = conv.get_reply_message() # get parent message this message reply to try: # iterate all the replies for the parent message for reply...

``` from tenacity import retry, retry_if_exception_type, stop_after_attempt @retry(retry=retry_if_exception_type(ValueError), stop=stop_after_attempt(3)) def aa(value): try: print(value) raise ValueError except ValueError: value = value +1 # want to update the value here for next...