Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
hooks:
- id: codespell
- repo: 'https://github.com/charliermarsh/ruff-pre-commit'
rev: v0.16.4
rev: v0.16.5
hooks:
- id: ruff
args:
Expand Down
2 changes: 2 additions & 0 deletions docs/guides/data.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ from pydantic import Field
from taps.plugins import register
from taps.transformer import TransformerConfig


@register('transformer')
class FooTransformerConfig(TransformerConfig):
"""Foo transformer configuration."""
Expand Down Expand Up @@ -141,6 +142,7 @@ from pydantic import Field

from taps.plugins import register


@register('filter')
class FooFilterConfig(FilterConfig):
"""Foo filter configuration."""
Expand Down
1 change: 1 addition & 0 deletions docs/guides/executor.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ from taps.executor.python import ThreadPoolConfig
from taps.executor.sync import SyncExecutor
from taps.executor.sync import SyncExecutorConfig
from taps.executor.ray import RayConfig

...
```

Expand Down