-
The following block of code is causing an incorrect E999 error to appear:
```python
def partial(func, *args, **kwargs):
return lambda *lambda_args: func(*args, *lambda_args, **kwargs) # error…
-
In GitLab by @valignatev on Jun 11, 2018, 10:58
Hi! Is there a plan to support `pyproject.toml` from [PEP 518](https://www.python.org/dev/peps/pep-0518/)?
Specifically, it would be nice if flake8 co…
-
Полноценно прикрутить Flake8 и Black, добавить конфиги.
Потом.
-
It seems Django auto-formats migrations with Black now. However, it won't use our proper configuration as that only comes from the `Makefile`.
The options should instead be moved into `pyproject.to…
-
Currently interested in chaining or extending the `rye lint` command to also perform typechecking. For example:
```toml
[tool.rye.scripts]
typecheck = "mypy mymodule"
check = { chain = ["rye lin…
-
We should create a template for pull requests, requiring the contributor to tick a box stating that he read the contributing guidelines (CONTRIBUTING.md). By that we can make sure that the contributor…
-
DIscovered by #141 and related to #305... [flake8](http://flake8.pycqa.org) testing of https://github.com/mingrammer/diagrams
% `flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics`
…
-
We should probably switch to a more standard python style for the scripts.
The tool 'flake8' seems pretty good as a style checker.
E.g. you can do
pip install --user flake8
[make sure ~/.local/b…
-
# Bug report
## What's wrong
I get
```console
PT019 fixture _set without value is injected as parameter, use @pytest.mark.usefixtures instead
```
with
```python
...
@pytest.mark.param…
-
Following the instructions on https://github.com/esteve/ros2_java/blob/master/README.md#desktop
from the link on https://github.com/ros2-java/ros2_java_examples
the command
src/ament/ament_too…