(self, args)
| 140 | return os.path.abspath(args) |
| 141 | |
| 142 | def do_remove(self, args): |
| 143 | self._check_arg('path', args, invalids=['.', '/']) |
| 144 | self._check_path(args) |
| 145 | |
| 146 | os.rmdir(args) |
| 147 | return os.path.abspath(args) |
| 148 | |
| 149 | def do_list(self, args): |
| 150 | path = os.path.expandvars(args.get('path', '/')) |
nothing calls this directly
no test coverage detected