Akuli

Results 359 comments of Akuli
trafficstars

Removing a package with many downloads from pypi doesn't seem like a good idea to me, because someone could upload a malicious package with the same name. **Edit:** Nevermind, it...

Sometimes you want to return the usual union: if a function returns `str | None` and you forget to check for `None`, that should be an error.

Workaround for now: You can download SVG and then find-and-replace as if it was a text file. For example, to set 16px font instead of the default 11px and also...

The repos for both of these are now archived. I will apparently need to rewrite the releasing config. That will be a pain, because it's hard to test the releasing...

As for git messes: it's totally ok to make a mess with git! I use "squash and merge" in my projects, which basically means that a messy PR will appear...

The CI error has to do with #1300. Apparently the CI on Python 3.11 doesn't pass very reliably, even though you got it to pass most of the time in...

I think it is fine either way.

Some ways to disable the line length marker: - Project-specific: set `max_line_length = 0` or `max_line_length = -1` in editorconfig (not sure what other editors do, this doesn't seem to...

Maybe the entire marker is off by one pixel or so? Not sure. I'm looking at this part of your screenshot: ![s](https://github.com/Akuli/porcupine/assets/18505570/257c53e9-1a84-41f0-aedd-268955a65c74)

As far as I know there's no good way to place a line between the background and the text, apart from turning the entire text widget into a `Canvas` which...