Micha Reiser
Micha Reiser
You're aliasing `BaseModel` here ```py BaseModel = models.Model ``` The rule works as expected if you use ```py class MyModel(models.Model): """...""" def __str__(self) -> str: return "string" class Meta: verbose_name...
Hmm. I'm not very familiar with remote development. Can you try if https://github.com/astral-sh/ruff-vscode/issues/178 helps you fix the issue?
> Oh wait, I think I misunderstood. Do you mean we should account for the possible quotes inside a format spec, thus choosing single quote for this specific example? Yes....
Thanks. This does sound very unfortunate. I'm open to adding a third option
My first reaction is that this is similar to Prettier's/Rome's JSX formatting and that we need to use `BestFitting` with three variants: 1. Join all string parts into a single...
Black considers to not move forward with the `string_processing` preview style ([issue](https://github.com/psf/black/issues/4208))
@KotlinIsland we agree. A solution for this is described in https://github.com/astral-sh/ruff/issues/9457
Ruff now automatically joins implicit concatenated strings and I consider it as unlikely that we'll implement automatic splitting of string literals, at least in the near future.
This also an issue on Windows where the operation fails. ``` uv venv Using Python 3.12.2 interpreter at C:\Users\Micha\AppData\Local\Programs\Python\Python312\python.exe Creating virtualenv at: .venv uv::venv::creation × Failed to create virtualenv ├─▶...
Hmm interesting. I can see how this is frustrating. Do I understand it correctly that this is an opt-in feature for `gettext`? I'm hesitant to add support for this because:...