(self, dependency)
| 103 | """ |
| 104 | |
| 105 | def __init__(self, dependency): |
| 106 | assert isinstance(dependency, str) |
| 107 | |
| 108 | msg = "'{}' is specified as an output and as a dependency." |
| 109 | super().__init__(msg.format(dependency)) |
| 110 | |
| 111 | |
| 112 | class ArgumentDuplicationError(DvcException): |