Merge pull request #435 from kgeis/patch-1

fix tools typos
This commit is contained in:
Timothy Jaeryang Baek 2025-03-15 11:36:30 +00:00 committed by GitHub
commit e33e8ca98e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ Valves are configurable by admins alone and UserValves are configurable by any u
default=0, description="Priority level for the filter operations."
)
test_valve: int = Field(
default=4, description="A valve controlling a numberical value"
default=4, description="A valve controlling a numerical value"
)
pass

View File

@ -68,7 +68,7 @@ licence: MIT
### Tools Class
Tools have to be defined as methods withing a class called `Tools`, with optional subclasses called `Valves` and `UserValves`, for example:
Tools have to be defined as methods within a class called `Tools`, with optional subclasses called `Valves` and `UserValves`, for example:
```python
class Tools:
@ -109,7 +109,7 @@ Valves are configurable by admins alone and UserValves are configurable by any u
default=0, description="Priority level for the filter operations."
)
test_valve: int = Field(
default=4, description="A valve controlling a numberical value"
default=4, description="A valve controlling a numerical value"
)
pass