diff --git a/src/sageworks/core/cloud_platform/aws/aws_df_store.py b/src/sageworks/core/cloud_platform/aws/aws_df_store.py index 6e01b5efe..95ed904b2 100644 --- a/src/sageworks/core/cloud_platform/aws/aws_df_store.py +++ b/src/sageworks/core/cloud_platform/aws/aws_df_store.py @@ -62,7 +62,7 @@ def list(self, include_cache: bool = False) -> list: Returns: list: A list of all the objects in the data_store prefix. """ - df = self.summary(include_cache=i) + df = self.summary(include_cache=include_cache) return df["location"].tolist() def last_modified(self, location: str) -> Union[datetime, None]: