(self, paths)
| 177 | |
| 178 | class 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 | |
| 188 | class OverlappingOutputPathsError(DvcException): |