Skip to content
Snippets Groups Projects
Commit 477cbd40 authored by schulmax's avatar schulmax
Browse files

[FIX] Param type notation for transformer fixed

Param type is actually the container name (string)
instead of an instance
parent 77f8ce41
No related branches found
No related tags found
No related merge requests found
......@@ -89,8 +89,8 @@ class CompareTransformer(AbstractTransformer):
:param target: The target container.
:param mapping: If you do not want the result properties to be mapped like in target system, provide a mapping here.
:param **kwargs: Accepts parameters from :class:`.AbstractTransformer`.
:type source: :class:`hshetl.entities.Container` or None
:type target: :class:`hshetl.entities.Container` or None
:type source: string or None
:type target: string or None
:type mapping: dict or None
YAML definition sample:
......@@ -220,7 +220,7 @@ class PropertiesTransformer(AbstractTransformer):
:param source: The source container.
:param operations: The operations that will be performed. The key is the property that should be transformed and the value a method call.
:param **kwargs: Accepts parameters from :class:`.AbstractTransformer`.
:type source: :class:`hshetl.entities.Container` or None
:type source: string or None
:type operations: dict
All property values of the entity are available in the local scope of your method call.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment