Why does the following fail?
import time
def initialize(context):
pass
def handle_data(context, data):
time.sleep(1) # sleep 1 seconds
Runtime error:
SecurityViolation: 0002 Security Violation(s): Accessing time.sleep raised an AttributeError. No attributes with a similar name were found.
There was a runtime error on line 6.