Skip to content

Commit 768ddeb

Browse files
authored
fix busted indentation in CONTRIBUTING.md (#2)
* fix indentation in CONTRIBUTING.md * fix (more) indentation in CONTRIBUTING.md
1 parent cdc4cda commit 768ddeb

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

CONTRIBUTING.md

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ Thank you for your interest in contributing to the MCP Python SDK! This document
1010
4. Clone your fork: `git clone https://github.com/YOUR-USERNAME/python-sdk.git`
1111
5. Install dependencies:
1212

13-
```bash
14-
uv sync --frozen --all-extras --dev
15-
```
13+
```bash
14+
uv sync --frozen --all-extras --dev
15+
```
1616

1717
6. Set up pre-commit hooks:
1818

19-
```bash
20-
uv tool install pre-commit --with pre-commit-uv --force-reinstall
21-
```
19+
```bash
20+
uv tool install pre-commit --with pre-commit-uv --force-reinstall
21+
```
2222

2323
## Development Workflow
2424

@@ -33,34 +33,34 @@ uv tool install pre-commit --with pre-commit-uv --force-reinstall
3333

3434
4. Ensure tests pass:
3535

36-
```bash
37-
uv run pytest
38-
```
36+
```bash
37+
uv run pytest
38+
```
3939

4040
5. Run type checking:
4141

42-
```bash
43-
uv run pyright
44-
```
42+
```bash
43+
uv run pyright
44+
```
4545

4646
6. Run linting:
4747

48-
```bash
49-
uv run ruff check .
50-
uv run ruff format .
51-
```
48+
```bash
49+
uv run ruff check .
50+
uv run ruff format .
51+
```
5252

5353
7. Update README snippets if you modified example code:
5454

55-
```bash
56-
uv run scripts/update_readme_snippets.py
57-
```
55+
```bash
56+
uv run scripts/update_readme_snippets.py
57+
```
5858

5959
8. (Optional) Run pre-commit hooks on all files:
6060

61-
```bash
62-
pre-commit run --all-files
63-
```
61+
```bash
62+
pre-commit run --all-files
63+
```
6464

6565
9. Submit a pull request to the same branch you branched from
6666

@@ -70,22 +70,22 @@ To build and view the documentation locally:
7070

7171
1. Install documentation dependencies (included with `--dev` flag above):
7272

73-
```bash
74-
uv sync --frozen --group docs
75-
```
73+
```bash
74+
uv sync --frozen --group docs
75+
```
7676

7777
2. Serve the documentation locally:
7878

79-
```bash
80-
uv run mkdocs serve
81-
```
79+
```bash
80+
uv run mkdocs serve
81+
```
8282

83-
**Note for macOS users**: If you encounter a [Cairo library error](https://squidfunk.github.io/mkdocs-material/plugins/requirements/image-processing/#cairo-library-was-not-found), set the library path before running mkdocs:
83+
**Note for macOS users**: If you encounter a [Cairo library error](https://squidfunk.github.io/mkdocs-material/plugins/requirements/image-processing/#cairo-library-was-not-found), set the library path before running mkdocs:
8484

85-
```bash
86-
export DYLD_FALLBACK_LIBRARY_PATH=/opt/homebrew/lib
87-
uv run mkdocs serve
88-
```
85+
```bash
86+
export DYLD_FALLBACK_LIBRARY_PATH=/opt/homebrew/lib
87+
uv run mkdocs serve
88+
```
8989

9090
3. Open your browser to `http://127.0.0.1:8000/python-sdk/` to view the documentation
9191

0 commit comments

Comments
 (0)