(self, result)
| 23 | |
| 24 | class CmdDataPull(CmdDataBase): |
| 25 | def log_summary(self, result): |
| 26 | from dvc.commands.checkout import log_changes |
| 27 | |
| 28 | stats = result.pop("stats", {}) |
| 29 | log_changes(result) |
| 30 | super().log_summary(stats) |
| 31 | |
| 32 | def run(self): |
| 33 | from dvc.exceptions import CheckoutError, DvcException |
no test coverage detected