"Use method 'set_param' via param namespace"

Hi, has anyone been encountering

WARNING:foobar: Use method 'set_param' via param namespace

when doing something like param.Parameterized().set_param()?

I’ve seen this around in the holoviz docs (e.g https://examples.pyviz.org/iex_trading/IEX_stocks.html) and in my own code after a few months of absence from the code. Is this worth a GH issue?

I think that the syntax has just changed. In order to avoid this warning you just need to add param between your object and your function. In your case : param.Parameterized().param.set_param()

2 Likes

Thanks a lot, that was it!