Skip to content

Commit 35da522

Browse files
committed
Minor typo changes
1 parent 73a5b23 commit 35da522

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

skillsnetwork/core.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def _verify_files_dont_exist(
127127
"""
128128
Verifies all paths in 'paths' don't exist.
129129
:param paths: A iterable of pathlib.Paths.
130-
:param remove_if_exist=False: Removes file at path if they already exist.
130+
:param remove_if_exist=False: Remove each file at each path in paths if they already exist.
131131
:returns: None
132132
:raises FileExistsError: On the first path found that already exists if remove_if_exist is False.
133133
"""
@@ -239,7 +239,6 @@ async def prepare(
239239
path.mkdir(exist_ok=True)
240240

241241
# For avoiding collisions with any other files the user may have downloaded to /tmp/
242-
243242
dname = f"skills-network-{hash(url)}"
244243
# The file to extract data to. If not jupyterlite, to be symlinked to as well
245244
extract_dir = path if _is_jupyterlite() else Path(f"/tmp/{dname}")

0 commit comments

Comments
 (0)