Maxime Liquet
Maxime Liquet
It'd be great to have a visual reference to the different types of plots datashader can produce.
The warning isn't displayed on the website (presumable ignored by nbsite) so quite difficult to realize it's there, until Philipp ran it during Scipy's tutorial 🙃
### Describe the bug Hi and thanks for this great library, loving it! I am very tempted to use more and more features of myst-nb and your ecosystem in general...
From https://github.com/holoviz/panel/issues/3580 I didn't expect that setting the `test_param` attribute in the example below would trigger the callback, but it does. ```python import param class Sub(param.Parameterized): s = param.String() class...
To raise an error in these cases where the `depends` decorator is used either without arguments or without providing any dependencies (same on methods on Parameterized classes). ```python @param.depends def...
CalendarDate serializes with `value.strftime("%Y-%m-%d")` and Date with `value.strftime("%Y-%m-%dT%H:%M:%S.%f")`. These two formats don't include any timezone info while they include the time offset, e.g. as in `2022-05-11T17:33:14+02:00`. I would think this...
The `Comparator` class is used internally by Param to compare if two objects are equal with the `is_equal` class method. This is used to decide whether setting a new attribute...
This is useful for Panel when an `AutocompleteInput` widget is created from a `Selector` Parameter, with `restrict` (widget) and `check_on_set` (Parameter) set to False. Before this change, a new value...
Fixes #545 (only addresses the update path issue, not the default value) ```python import param class A(param.Parameterized): fs = param.FileSelector(path='/usr/share/*') mfs = param.MultiFileSelector(path='/usr/share/*') a = A() print(a.fs is None) #...
Fixes #527 I chose to raise a `ValueError` when the type is not a list since raising `ValueError` seems to be what param does in this case. The tests used...