We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc1b2e8 commit 6cb2bb9Copy full SHA for 6cb2bb9
2 files changed
.github/workflows/testing.yml
@@ -49,5 +49,7 @@ jobs:
49
source .venv/bin/activate
50
pytest tests/
51
52
- - name: Black Code Formatter
53
- uses: jpetrucciani/black-check@22.12.0
+ - name: Lint with ruff
+ run: |
54
+ pip install ruff
55
+ ruff check .
pyproject.toml
@@ -27,7 +27,6 @@ python = "^3.12"
27
httpx = ">=0.28,<1"
28
29
[tool.poetry.dev-dependencies]
30
-black = "^26.3"
31
pytest = "^9"
32
isort = "^5.11"
33
pytest-httpx = ">0.15,<1"
0 commit comments