Skip to content

Commit

Permalink
docs: fix import statement for EventEnvelope (acryldata#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
paularmand authored Sep 5, 2023
1 parent fa7b2d5 commit 5d881b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guides/developing-a-transformer.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ print the configuration that is provided when it is created, and print any Event
```python
# custom_transformer.py
from datahub_actions.transform.transformer import Transformer
from datahub_actions.event.event import EventEnvelope
from datahub_actions.event.event_envelope import EventEnvelope
from datahub_actions.pipeline.pipeline_context import PipelineContext
from typing import Optional

Expand Down Expand Up @@ -130,4 +130,4 @@ it without defining the full module path.
Prerequisites to consideration for inclusion in the core Transformer library include

- **Testing** Define unit tests for your Transformer
- **Deduplication** Confirm that no existing Transformer serves the same purpose, or can be easily extended to serve the same purpose
- **Deduplication** Confirm that no existing Transformer serves the same purpose, or can be easily extended to serve the same purpose

0 comments on commit 5d881b5

Please sign in to comment.