MCPcopy
hub / github.com/treeverse/dvc / __init__

Method __init__

dvc/exceptions.py:179–185  ·  view source on GitHub ↗
(self, paths)

Source from the content-addressed store, hash-verified

177
178class BadMetricError(DvcException):
179 def __init__(self, paths):
180 super().__init__(
181 "the following metrics do not exist, "
182 "are not metrics files or are malformed: {paths}".format(
183 paths=", ".join(f"'{path}'" for path in paths)
184 )
185 )
186
187
188class OverlappingOutputPathsError(DvcException):

Callers

nothing calls this directly

Calls 3

joinMethod · 0.80
__init__Method · 0.45
formatMethod · 0.45

Tested by

no test coverage detected