Skip to content

Commit

Permalink
tree: remove duplicated code
Browse files Browse the repository at this point in the history
Leftover from remote/tree separation.
  • Loading branch information
efiop committed Jul 16, 2020
1 parent 1c4a8cf commit ee431a9
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions dvc/tree/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import logging
import tempfile
from concurrent.futures import ThreadPoolExecutor, as_completed
from functools import partial, wraps
from functools import partial
from multiprocessing import cpu_count
from operator import itemgetter
from urllib.parse import urlparse
Expand Down Expand Up @@ -55,24 +55,6 @@ class RemoteMissingDepsError(DvcException):
pass


class DirCacheError(DvcException):
def __init__(self, hash_):
super().__init__(
f"Failed to load dir cache for hash value: '{hash_}'."
)


def index_locked(f):
@wraps(f)
def wrapper(obj, named_cache, remote, *args, **kwargs):
if hasattr(remote, "index"):
with remote.index:
return f(obj, named_cache, remote, *args, **kwargs)
return f(obj, named_cache, remote, *args, **kwargs)

return wrapper


class BaseRemoteTree:
scheme = "base"
REQUIRES = {}
Expand Down

0 comments on commit ee431a9

Please sign in to comment.