Félix Antoine Goudreault

Results 7 issues of Félix Antoine Goudreault

MWE: 1- open openshot (empty project) 2- import any video (in my case a `.MOV` format) 3- place at beginning and go at the beginning then -> right click ->...

`np.object` is used here: https://github.com/uchicago-cs/deepdish/blob/master/deepdish/io/hdf5io.py#L125 Thus the code crashes when it goes through this line when `numpy >= 1.24`.

Dear pseudo-dojo developers, I noticed that for oxygen, the pseudo for LDA is missing on the website. Although, I found it in the GitHub repo here: https://github.com/abinit/pseudo_dojo/tree/master/pseudo_dojo/pseudos/ONCVPSP-PW-PDv0.4/O Is there a...

Some html events only occurs at the `window` level. E.g.: [`message`](https://developer.mozilla.org/en-US/docs/Web/Events). It could prove useful to add `EventListeners` for these kind of events. At the moment, when the `EventListener` has...

I'd like to propose a new option to the EditControl component which allows to customize the tooltip shown when hovering on the draw buttons. Here's an example screenshot of what...

### Bug description Here's a problematic code according to the `pylint.extensions.magic_value` checker. ```python ll = ["test"] if "test" in ll: raise ValueError("test in list") ``` Which raises the following warning:...

Needs triage :inbox_tray:

Here's a MWE: ```py from typing import Self class C: @classmethod def from_nothing(cls) -> Self: return cls() class D(C): @classmethod def from_nothing(cls) -> Self: return super().from_nothing() class E(D): clsattr =...