Skip to content

Commit 46d2feb

Browse files
Rename make fmt to make format
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3abb567 commit 46d2feb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
2020
make lint # Lint + format check + mypy
2121
```
2222

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
RUFF_VERSION := 0.14.14
22
TOX_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 .

docs/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)