Skip to content

Commit 6408db4

Browse files
style: lint
1 parent ecb7f23 commit 6408db4

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

src/aignostics/bucket/_cli.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030

3131
def _find_matching_objects(source_pattern: str) -> list[dict[str, str]]:
3232
"""Find objects in bucket matching the given pattern.
33-
33+
3434
Args:
3535
source_pattern: Regular expression pattern to match object keys against.
36-
36+
3737
Returns:
3838
List of dictionaries containing object key and signed download URL.
3939
"""
@@ -57,12 +57,12 @@ def _download_single_file(
5757
file_progress: "Progress",
5858
) -> Path | None:
5959
"""Download a single file and return the output path on success, None on failure.
60-
60+
6161
Args:
6262
obj: Dictionary containing object key and signed download URL.
6363
destination: Destination directory for the downloaded file.
6464
file_progress: Rich Progress instance for tracking individual file progress.
65-
65+
6666
Returns:
6767
Path to the downloaded file on success, None on failure.
6868
"""
@@ -149,9 +149,7 @@ def _download_with_progress(matched: list[dict[str, str]], destination: Path, so
149149

150150
# Create main task for overall progress
151151
main_task = main_progress.add_task(
152-
f"Downloading {len(matched)} files",
153-
total=len(matched),
154-
extra_description=f"matching '{source_pattern}'"
152+
f"Downloading {len(matched)} files", total=len(matched), extra_description=f"matching '{source_pattern}'"
155153
)
156154

157155
# Create progress group

0 commit comments

Comments
 (0)