Param with bounds should default to lower bound
Open
type-bug
- Dominant language
- Python
- Stars
- 521
- Forks
- 86
- Avg merge
- 1d 13h
- Merged PRs (30d)
- 35
Description
```python
import param
class Test(param.Parameterized):
fps = param.Integer(
bounds=(1, None),
doc="The number of frames per second to use for the output.",
)
Test()
```
`ValueError: Integer parameter 'fps' must be at least 1, not 0.`
Contributor guide
Assessment
This issue has not been assessed yet.