We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e86b436 commit acdb58bCopy full SHA for acdb58b
src/sagemaker/feature_store/feature_group.py
@@ -473,11 +473,12 @@ class FeatureGroup:
473
Attributes:
474
name (str): name of the FeatureGroup instance.
475
sagemaker_session (Session): session instance to perform boto calls.
476
+ If None, a new Session will be created.
477
feature_definitions (Sequence[FeatureDefinition]): list of FeatureDefinitions.
478
"""
479
480
name: str = attr.ib(factory=str)
- sagemaker_session: Session = attr.ib(default=Session)
481
+ sagemaker_session: Session = attr.ib(factory=Session)
482
feature_definitions: Sequence[FeatureDefinition] = attr.ib(factory=list)
483
484
_INTEGER_TYPES = [
0 commit comments