(self, path)
| 131 | """ |
| 132 | |
| 133 | def __init__(self, path): |
| 134 | msg = ( |
| 135 | "move is not permitted for stages that are not data sources. " |
| 136 | f"You need to either move {path!r} to a new location and edit " |
| 137 | f"it by hand, or remove {path!r} and create a new one at the " |
| 138 | "desired location." |
| 139 | ) |
| 140 | super().__init__(msg) |
| 141 | |
| 142 | |
| 143 | class NotDvcRepoError(DvcException): |