Skip to content

Commit

Permalink
Link to deprecated FMEBaseTransformer
Browse files Browse the repository at this point in the history
  • Loading branch information
hhtong committed Aug 16, 2024
1 parent 036db18 commit 1a26d98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fmetools/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ class FMEEnhancedTransformer(FMEBaseTransformer):
This class overrides :meth:`has_support_for` to return ``True`` for Bulk Mode support.
This means that the transformer cannot cache or copy features for later use,
and cannot output new :class:`fmeobjects.FMEFeature` instances.
See :meth:`fme.BaseTransformer.has_support_for` for details about these restrictions.
See :meth:`fmetools._deprecated.FMEBaseTransformer.has_support_for` for details about these restrictions.
"""

def __init__(self):
Expand Down Expand Up @@ -588,7 +588,7 @@ def has_support_for(self, support_type: int) -> bool:
Overrides the default implementation to report support for Bulk Mode.
:returns: ``True`` if ``support_type`` is :data:`fmeobjects.FME_SUPPORT_FEATURE_TABLE_SHIM`.
See :meth:`fme.BaseTransformer.has_support_for` for more details.
See :meth:`fmetools._deprecated.FMEBaseTransformer.has_support_for` for more details.
"""
if support_type == FME_SUPPORT_FEATURE_TABLE_SHIM:
return True
Expand Down

0 comments on commit 1a26d98

Please sign in to comment.