Как я могу вызвать исключение каждые 20 минут в python?
Я пытаюсь использовать код ниже
@timeout_decoder(3, exception=TimeoutException) def test_foo(): try: pass except: ##need to catch exception here. test_fun() ## but exception goes here