Skip to content

Commit

Permalink
fix a typo that got missed
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Dec 2, 2024
1 parent 569e115 commit a0fc777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sageworks/core/cloud_platform/aws/aws_df_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down

0 comments on commit a0fc777

Please sign in to comment.