Auto-complete rm
(self, file)
| 1767 | |
| 1768 | @CLIUtil.addcomplete(rm) |
| 1769 | def rm_complete(self, file): |
| 1770 | """ |
| 1771 | Auto-complete rm |
| 1772 | """ |
| 1773 | if self._require_share(silent=True): |
| 1774 | return [] |
| 1775 | return self._fs_complete(file) |
| 1776 | |
| 1777 | @CLIUtil.addcommand() |
| 1778 | def backup(self): |
nothing calls this directly
no test coverage detected