Rafał Florczak
Rafał Florczak
This is still an issue in 0.14.1 ``` >>> import logging; print(logging.getLogger().handlers) [] >>> import open3d; open3d.__version__ '0.14.1' >>> print(logging.getLogger().handlers) [] ```
It could be related to the recent changes in gdrive behavior that are also affecting gdown users: https://github.com/wkentaro/gdown/issues/291. Torchvision seems to implement their own gdrive handling which might need a...
We've managed to narrow down the issue to the web browser version. The issue manifests on Firefox ESR 102 which is the previous LTS release of Firefox. I think that...
There's a brief mention of the supported browsers on https://django-formset.fly.dev/installation/ page: > The provided JavaScript file is optimized for modern browsers, which can handle EcmaScript-ES2020, or later. These browsers are...
> For debugging purpose, it would be a good idea to compile the client code using the debug options. This does not minify the code and adds a Sourcemap. I'm...
I further narrowed the issue down to 9c44f7b0983093861ac2203eff2c03b77fa24ee8 where `this.transferStyles()` call has been moved to `constructor`, where an unhandled exception from `DualSelector.ts:403`:  ``` sheet.insertRule(`${this.baseSelector} .left-column:has(>input:focus, >select:focus){${extraStyles}}`, ++index); ``` the...