We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33c2d12 commit 4137a1fCopy full SHA for 4137a1f
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
@@ -22,7 +22,6 @@ python = "^3.13"
22
httpx = ">=0.28,<1"
23
24
[tool.poetry.group.dev.dependencies]
25
-black = "^26.3"
26
pytest = "^9"
27
pytest-httpx = ">0.35,<1"
28
pytest-asyncio = "^1.3.0"
0 commit comments