Source code for ewoksppf.tests.test_ppf_actors.pythonActorTest

import time

from . import SLEEP_TIME


[docs] def run(name, **kwargs): time.sleep(SLEEP_TIME) reply = None if name is not None: reply = "Hello " + name + "!" return {"reply": reply}