Skip to content

Commit 3644ee1

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ab9d0cf commit 3644ee1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

servicex/query_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,9 +573,9 @@ async def get_signed_url(
573573
begin_at = new_begin_at
574574

575575
for file in files:
576-
file_path = file.get("file-path", '').replace("/", ":")
576+
file_path = file.get("file-path", "").replace("/", ":")
577577

578-
if file_path != '' and file_path not in files_seen:
578+
if file_path != "" and file_path not in files_seen:
579579
if signed_urls_only:
580580
download_tasks.append(
581581
loop.create_task(

0 commit comments

Comments
 (0)