Aran-Fey

Results 19 comments of Aran-Fey

It seems like this is getting more and more off topic... It's not relevant if the theme meets some kind of standard or if the screenshots look good (to you)....

How about "Auto Move Windows"? I think that makes the difference to "pin"-ing very clear.

I'm confused. Is there something about `functools.cache` that makes it particularly difficult to type, or does every function decorator have this problem? I noticed `functools.wraps` also isn't annotated correctly: ```python...

Wait, `contextmanager` returns a `Callable`? But it can still be used on methods? So `Callable` doesn't mean "it's callable", it actually means "it's callable *and* is a descriptor that returns...

I see, thanks! But boy, what a mess.

I made this userscript as a workaround: ```javascript const url = data.element && data.element.linkHref; if (url){ executeInBackground(async (url) => { // If this is the first time this script is...

Can I safely remove the `src` directory if I don't want it or does `rye` need it to function correctly? I understand that the `src` directory is supposed to prevent...

I'm also having issues with emojis, though with a different error: ```python >>> dukpy.evaljs('"\u26a1\ufe0e \ud83d\udca6"') Traceback (most recent call last): File "", line 1, in File "C:\Users\Aran-Fey\AppData\Roaming\Python\Python311\site-packages\dukpy\evaljs.py", line 138, in...

Another option is to make `.destroy()` idempotent, i.e. simply do nothing if the window is already destroyed. By the way, I think this error also occurs if `.destroy()` is called...