mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-14 09:54:56 +00:00
10 lines
179 B
Python
10 lines
179 B
Python
![]() |
#!/usr/bin/env python
|
||
|
|
||
|
def execute(api):
|
||
|
api.log("Before wait")
|
||
|
api.wait(2)
|
||
|
api.log("After wait")
|
||
|
api.log("Before wait")
|
||
|
api.wait(3)
|
||
|
api.log("After wait")
|