def __all_names()

in spotify_tensorflow/featran.py [0:0]


    def __all_names(settings):
        # type: (List[Dict[str, Any]]) -> List[str]
        feature_names = []
        for setting in settings:
            for name in setting["featureNames"]:
                feature_names.append(name)
        return feature_names