```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.`