Skip to content

Commit

Permalink
docs: use a different example value
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Oct 14, 2024
1 parent 30d3306 commit 29cf388
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/userguides/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,13 +265,13 @@ These types of settings lack sophisticated Pydantic validation and are limited i

```yaml
my_project_key:
my_project_setting: "123"
my_project_setting: "my_value"
```
Then, to access it (or any setting for that matter):
```python
from ape import project

setting = project.config.my_project_key.my_project_setting # "123"
setting = project.config.my_project_key.my_project_setting # my_value
```

0 comments on commit 29cf388

Please sign in to comment.