Return a path relative to the root, stripped from its root segment unless the codebase contains a single file or there is only one segment in the path.
(self)
| 1326 | |
| 1327 | @property |
| 1328 | def strip_root_path(self): |
| 1329 | """ |
| 1330 | Return a path relative to the root, stripped from its root segment |
| 1331 | unless the codebase contains a single file or there is only one segment |
| 1332 | in the path. |
| 1333 | """ |
| 1334 | return strip_first_path_segment(self.path) |
| 1335 | |
| 1336 | @property |
| 1337 | def is_dir(self): |
nothing calls this directly
no test coverage detected