0
x = """Text"""

def job():
    app.send_message("Group3", x)
    app.send_message("Group2", x)
    app.send_message("Group1", x)

It has an interval of 30 seconds, every 30 seconds it sends a message, but it gets stuck in for example Group2, because the group has a slow mode(timer of 15min). And after that it doesn't proceed to Group1. Then it sends message again to Group3 and gets stuck on Group2 again. How should I make it ignore the error/slowmode and proceed to Group1?

Appreciate it!

Heiki
  • 1
  • Does this answer your question? [Is it a good practice to use try-except-else in Python?](https://stackoverflow.com/questions/16138232/is-it-a-good-practice-to-use-try-except-else-in-python) – CallMeStag Jul 22 '21 at 06:27

0 Answers0