mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-10 19:12:28 +00:00
13 lines
321 B
Python
13 lines
321 B
Python
from senpy.plugins import SenpyPlugin
|
|
from senpy.models import Results
|
|
from time import sleep
|
|
|
|
|
|
class SleepPlugin(SenpyPlugin):
|
|
def activate(self, *args, **kwargs):
|
|
sleep(self.timeout)
|
|
|
|
def analyse(self, *args, **kwargs):
|
|
sleep(float(kwargs.get("timeout", self.timeout)))
|
|
return Results()
|