From e47b3eaddef35eca4aeab1bb0296047f99695621 Mon Sep 17 00:00:00 2001 From: Maximilian Schulz <maximilian.schulz@hs-hannover.de> Date: Thu, 3 Apr 2014 14:25:40 +0200 Subject: [PATCH] [FIX] Antoher param type annotation fix Property "transformer" of class "TransformJob" is now one of the two available transformers instead of an abstract transformer. --- hshetl/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hshetl/jobs.py b/hshetl/jobs.py index 9707608..e0e8e33 100644 --- a/hshetl/jobs.py +++ b/hshetl/jobs.py @@ -485,7 +485,7 @@ class TransformerJob(EntityJob, ConnectorJob): :param target: The reference to the target data container of the entity - normally defined with the name of a :class:`.ExtractionJob` or :class:`.TransformerJob`. :param **kwargs: Accepts parameters from :class:`.EntityJob`, :class:`.ConnectorJob` and :class:`.Job`. - :type transformer: :class:`hshetl.transformers.AbstractTransformer` + :type transformer: :class:`hshetl.transformers.CompareTransformer` or :class:`hshetl.transformers.PropertiesTransformer` :type name: unicode :type source: unicode :type target: unicode -- GitLab