Aran-Fey

Results 28 issues of Aran-Fey

Syntax highlighting in code blocks is currently done with inline styles like this: ``` def ``` This makes it impossible to customize syntax highlighting colors, which is a problem for...

When opening multiple tabs in a row, there's a difference in behavior between the "open link in new tab" tab from Firefox's context menu and FoxyGestures' "Open Link in New...

So I've discovered the hard way that `executeInBackground` only works with arrow functions. Consider this user script: ```javascript executeInBackground(() => console.log('hello')); ``` This correctly outputs "hello" to the extension console....

**Describe the bug** When an `assert` statement has a multi-line string, the condition is split across 3 lines for no reason. **To Reproduce** For example, take this code: ```python assert...

T: bug

A function decorated with `@functools.cache` loses its signature: ```python @functools.cache def my_func(foo: int | list) -> str: return str(foo) my_func('completely', 'incorrect', 'arguments') # Success: no issues found in 1 source...

stubs: false negative

```python import webview win = webview.create_window('Demo', 'https://www.github.com') webview.start() # Note: Manually close the window when it appears win.destroy() # Traceback (most recent call last): # File "D:\Users\Aran-Fey\Desktop\temp {e}\untitled.py", line 15,...

stale

Since `OrderedSet` supports indexing, it's natural to assume that assignments and `del` would work as well, but they don't: ```py >>> s = OrderedSet(['foo']) >>> s[0] 'foo' >>> s[0] =...

### Steps to Reproduce 1. Create a `pyproject.toml` with dynamic versioning: ```toml [project] dynamic = ["version"] ``` 2. Use `rye version -b` to bump the version: ```bash rye version -b...

### Steps to Reproduce 1. Run `rye init bug-demo` 2. Add this to the `pyproject.toml`: ```toml [tool.rye.scripts] demo-script = "npm --version" ``` 3. Run it: `rye run demo-script` ### Expected...

Currently, our JS and CSS is inlined in the index.html, so browsers are forced to re-download it every time. We should extract these into static files that the browser only...

enhancement