(self)
| 738 | |
| 739 | @cached_property |
| 740 | def location(self) -> Tuple[str, Optional[int], str]: |
| 741 | location = self.reportinfo() |
| 742 | path = absolutepath(os.fspath(location[0])) |
| 743 | relfspath = self.session._node_location_to_relpath(path) |
| 744 | assert type(location[2]) is str |
| 745 | return (relfspath, location[1], location[2]) |
nothing calls this directly
no test coverage detected