Skip to content

Commit 4ead279

Browse files
committed
some adjustments
1 parent ee965f7 commit 4ead279

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ jobs:
77
- uses: actions/checkout@v4
88
- uses: astral-sh/ruff-action@v3
99
- name: Ruff format
10-
run: ruff format --check
10+
run: ruff format --diff

src/download/wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def mds_download(
165165
destination_file = os.path.join(output_directory, output_filename)
166166
files_found = glob.glob(destination_file)
167167
if not overwrite and len(files_found) > 0:
168-
logger.info(f'File already exists: {", ".join(files_found)}')
168+
logger.info(f"File already exists: {', '.join(files_found)}")
169169
return
170170

171171
# get temporary directory where to download the file
@@ -324,4 +324,4 @@ def download_file(*args, **kwargs):
324324

325325

326326
def log():
327-
logger.info("I'm wrappper")
327+
logger.info("I'm wrapper")

0 commit comments

Comments
 (0)