Use the features property to return the ingested features while running the feature process.
Example
>>> fp = FeatureProcess(repo="vfs_test", ... df=df, ... entity="accounts", ... features=["Jan", "Feb", "Mar", "Apr"] ... )
>>> fp.features
["Jan", "Feb", "Mar", "Apr"]