File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ PyAthena is a Python DB API 2.0 (PEP 249) compliant client for Amazon Athena. Se
1616
1717### Code Quality — Always Run Before Committing
1818``` bash
19- make fmt # Auto-fix formatting and imports
19+ make format # Auto-fix formatting and imports
2020make lint # Lint + format check + mypy
2121```
2222
Original file line number Diff line number Diff line change 11RUFF_VERSION := 0.14.14
22TOX_VERSION := 4.34.1
33
4- .PHONY : fmt
5- fmt :
4+ .PHONY : format
5+ format :
66 # TODO: https://github.com/astral-sh/uv/issues/5903
77 uvx ruff@$(RUFF_VERSION ) check --select I --fix .
88 uvx ruff@$(RUFF_VERSION ) format .
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ The code formatting uses [ruff](https://github.com/astral-sh/ruff).
5151### Appy format
5252
5353``` bash
54- $ make fmt
54+ $ make format
5555```
5656
5757### Lint and check format
You can’t perform that action at this time.
0 commit comments