10 lines
186 B
Python
10 lines
186 B
Python
import random
|
|
import time
|
|
|
|
|
|
def risky_task() -> str:
|
|
if random.random() > 0.4:
|
|
time.sleep(1)
|
|
raise ValueError("Random failure occurred")
|
|
return "Task succeeded!"
|