holoviz / holoviz/param

pipeline @param.output usage

Open
#349 8 comments 0 reactions 0 assignees View on GitHub
doc
Dominant language
Python
Stars
521
Forks
86
Avg merge
1d 13h
Merged PRs (30d)
35

Description

This is a little strangeness. I'm not sure if this is anticipated behavior. If so, then it should be documented.

this works (passes the anticipated owi_obj):
```
@param.output(owi_obj=winds.OWI)
def output(self):
return self.execute()
```
This doesn't work (passes owi_obj as None):
```
@param.output(owi_obj=winds.OWI)
def owi_obj(self):
return self.execute()
```
And this doesn't work (passes owi_obj as None):
```
@param.output()
def owi_obj(self):
return self.execute()
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.