Skip to content

Commit

Permalink
dur
Browse files Browse the repository at this point in the history
Signed-off-by: Ayush Kamat <[email protected]>
  • Loading branch information
ayushkamat committed Dec 12, 2024
1 parent a340228 commit 1a59690
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/latch/ldata/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

from ._transfer.download import download as _download
from ._transfer.node import get_node_data as _get_node_data
from ._transfer.progress import Progress as Progress
from ._transfer.progress import Progress as _Progress
from ._transfer.remote_copy import remote_copy as _remote_copy
from ._transfer.upload import upload as _upload
from ._transfer.utils import query_with_retry
Expand Down Expand Up @@ -292,7 +292,7 @@ def upload_from(self, src: Path, *, show_progress_bar: bool = False) -> None:
_upload(
os.fspath(src),
self.path,
progress=Progress.tasks if show_progress_bar else Progress.none,
progress=_Progress.tasks if show_progress_bar else _Progress.none,
verbose=False,
create_parents=True,
)
Expand Down Expand Up @@ -339,7 +339,7 @@ def download(
_download(
self.path,
dst,
progress=Progress.tasks if show_progress_bar else Progress.none,
progress=_Progress.tasks if show_progress_bar else _Progress.none,
verbose=False,
confirm_overwrite=False,
)
Expand Down

0 comments on commit 1a59690

Please sign in to comment.