Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions dvc_ssh/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import threading
from typing import ClassVar

from fsspec.callbacks import DEFAULT_CALLBACK
from funcy import memoize, silent, wrap_prop, wrap_with

from dvc.utils.objects import cached_property
Expand Down Expand Up @@ -133,11 +132,7 @@ def put_file(
self,
from_file,
to_info,
callback=DEFAULT_CALLBACK,
size=None,
**kwargs,
):
with as_atomic(self, to_info) as tmp_file:
super().put_file(
from_file, tmp_file, callback=callback, size=size, **kwargs
)
super().put_file(from_file, tmp_file, **kwargs)