Hello, here's a quick one! Are `Results` objects ...
# ask-community
v
Hello, here's a quick one! Are
Results
objects meant to be instantiated within a task? Looks like it works either way
j
Hi @vish it is meant to be instantiated either outside or when declaring the task. e.g.:
Copy code
res = LocalResult(...)

@task(result=res)

# or

@task(res=LocalResult(...))