mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Automatic style fix
This commit is contained in:
parent
b8f095b626
commit
4ba099cd7d
@ -311,7 +311,7 @@ class S3Helper:
|
||||
def list_prefix(
|
||||
self, s3_prefix_path: str, bucket: str = S3_BUILDS_BUCKET
|
||||
) -> List[str]:
|
||||
paginator = self.client.get_paginator('list_objects_v2')
|
||||
paginator = self.client.get_paginator("list_objects_v2")
|
||||
pages = paginator.paginate(Bucket=bucket, Prefix=s3_prefix_path)
|
||||
result = []
|
||||
for page in pages:
|
||||
@ -324,7 +324,7 @@ class S3Helper:
|
||||
def list_prefix_non_recursive(
|
||||
self, s3_prefix_path: str, bucket: str = S3_BUILDS_BUCKET
|
||||
) -> List[str]:
|
||||
paginator = self.client.get_paginator('list_objects_v2')
|
||||
paginator = self.client.get_paginator("list_objects_v2")
|
||||
pages = paginator.paginate(Bucket=bucket, Prefix=s3_prefix_path)
|
||||
result = []
|
||||
for page in pages:
|
||||
|
Loading…
Reference in New Issue
Block a user