How to use the tempora.schedule.DelayedCommand.after function in tempora

To help you get started, we’ve selected a few tempora examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jaraco / irc / irc / schedule.py View on Github external
def execute_after(self, delay, func):
        self.add(schedule.DelayedCommand.after(delay, func))
github pajbot / pajbot / pajbot / eventloop.py View on Github external
def execute_after(self, delay, func):
        self.add(schedule.DelayedCommand.after(delay, func))