Skip to content

Commit e37243d

Browse files
committed
draft documentation
1 parent e95bd45 commit e37243d

File tree

15 files changed

+3170
-243
lines changed

15 files changed

+3170
-243
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,4 @@ openapi_spec.yml
155155
.claude/settings.local.json
156156

157157
# Integration test configuration
158-
tests/integration/integration_config.py
158+
src/tests/integration/integration_config.py

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ By participating in this project, you agree to abide by our Code of Conduct: be
7070

7171
5. Run linting:
7272
```bash
73-
ruff check src/ tests/
73+
ruff check src/
7474
```
7575

7676
6. Commit your changes:
@@ -120,7 +120,7 @@ Example test:
120120
```python
121121
def test_new_feature():
122122
"""Test description."""
123-
client = NutrientClient(api_key="test-key")
123+
client = NutrientClient({'apiKey': 'your_api_key'})
124124
result = client.new_feature()
125125
assert result == expected_value
126126
```
@@ -146,4 +146,4 @@ def test_new_feature():
146146
- Check existing documentation
147147
- Review closed issues and PRs
148148

149-
Thank you for contributing!
149+
Thank you for contributing!

0 commit comments

Comments
 (0)