Skip to content

Commit de157ac

Browse files
James WoodJames Wood
James Wood
authored and
James Wood
committed
fix lint
1 parent c02591a commit de157ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

podaac/hitide_backfill_tool/s3_reader.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def list_s3_keys(self, s3_path):
5757

5858
s3_client = boto3.client("s3")
5959
response = s3_client.list_objects_v2(Bucket=bucket_name, Prefix=prefix)
60-
60+
6161
if "Contents" in response:
6262
return [obj["Key"] for obj in response["Contents"]]
63-
else:
64-
return []
63+
64+
return []

0 commit comments

Comments
 (0)