Philipp Rudiger
Philipp Rudiger
Sorry for the slow response. Could you also report your ipywidgets version? Suspect that is the culprit here.
Actually, that's probably not it either. The tracebacks are confusing and don't provide much context unfortunately. Somehow: ```python event = deserializer.deserialize(Serialized(content=content, buffers=[])) ``` deserializes to a figure object, which really...
Sadly this isn't straightforward, Tornado will not handle relative redirects correctly so paths should be absolute. It is now possible to provide a `--root-path` to get this working but I...
I'm currently in a sprint with a few people and just saw the same error (with a different character) in someone's PyCharm terminal, specifically it was erroring on https://www.fileformat.info/info/unicode/char/231a/index.htm
Reopened and repurposed, I'm surprised you saw no warning or error at all.
Seems difficult, the kwargs are just passed down to bokeh's `Server` which passes it down to `tornado.web.TornadoApplication`.
Yes, thanks. Though in panel-material-ui I do export all components into the global namespace. I wouldn't want to do that in Panel but I suppose it could be considered if...
>Instead of using another namespace, would it work to have some pn.extension("pmui") Yes, that could work, though I might want a nicer spelling than `pn.extension("pmui")`, e.g. maybe `pn.extension(ui='material')` and then...
I think that's accurate, it would be nice if type checkers could do something like this could work: ``` class Widget: @overload def __new__(cls, *args, ui: Literal["material"], **params) -> MuiWidget:...
>And to build on that point and agreeing with Marc "it even harder to understand api differences", I think it should be clear to new users the one way to...