-
Hi, today while using the Ruff VSCode extension, Ruff crashed with the following message:
```
Ruff: Lint failed ( error: Ruff crashed. If you could open an issue at: https://github.com/astral-sh/r…
lmanc updated
6 months ago
-
## before
```python
email = factory.LazyAttribute(lambda obj: f"info@{obj.name.lower().replace(' ', '')}.de")
```
## after
```python
email = factory.LazyAttribute(lambda obj: f"info@{…
-
I have just noticed the results of linting scdbstrip and something went wrong. That doesn't break the code and it doesn't bother me. However, since the purpose of the change was "linting", it would be…
-
- [x] I am on the [latest](https://github.com/python-poetry/poetry/releases/latest) Poetry version.
- [x] I have searched the [issues](https://github.com/python-poetry/poetry/issues) of this repo a…
-
The MultiQC code base has a bunch of stuff written for Python 2 that we no longer need. We should modernise this for a cleaner, more readable, better code strucutre.
Examples, but not limited to:
…
ewels updated
11 months ago
-
if set ruff config in pyproject.toml:
```bash
[tool.ruff]
line-length = 120
select = [
"F", # pyflakes
"E", # pycodestyle errors
"W", # pycodestyle warnings
"C901",…
-
Is there documentation on accessing the Gutenberg editor?
Is there a way to restore the default wordpress editor when editing a post?
-
- [x] I am on the [latest](https://github.com/python-poetry/poetry/releases/latest) Poetry version.
- [x] I have searched the [issues](https://github.com/python-poetry/poetry/issues) of this re…
-
Hey! Given the code:
```python
import sys
if __name__ == "__main__":
x = ("hello", "world")
y = "foo"
msg = "abracadabra"
if msg.startswith(x) or msg.startswith(y):
…
-
So I am trying to create a single component that allows a user to create a series of rows of content that will be either 1, 2, or 3 columns. The idea is that a single component could have a layout lik…