Skip to content

Commit 842a226

Browse files
committed
Replace black with ruff for code formatting
1 parent b0375a8 commit 842a226

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Initialize environment
2323
run: uv sync --locked --all-groups
2424

25-
- name: Run black
25+
- name: Run ruff format check
2626
run: uv run ruff format --check temba_client
2727

2828
- name: Run ruff

pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ include = ["temba_client"]
3939
requires = ["hatchling"]
4040
build-backend = "hatchling.build"
4141

42-
[tool.black]
43-
line-length = 119
44-
4542
[tool.ruff]
4643
line-length = 120
4744
fix = true
@@ -53,7 +50,7 @@ ignore = ["E501", "F405"]
5350
[tool.isort]
5451
multi_line_output = 3
5552
force_grid_wrap = 0
56-
line_length = 119
53+
line_length = 120
5754
include_trailing_comma = true
5855
combine_as_imports = true
5956
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]

0 commit comments

Comments
 (0)