Source code for evalml.pipelines.components.transformers.encoders.encoder
from evalml.pipelines.components.transformers import Transformer
class CategoricalEncoder(Transformer):
    def get_feature_names(self):
        """Returns names of transformed and added columns
        Returns:
            list: list of feature names not including dropped features
        """
        return self._component_obj.feature_names