(self)
| 63 | n = nlstr = property(get_nlstr) |
| 64 | |
| 65 | def get_paths(self): |
| 66 | try: |
| 67 | return self.__paths |
| 68 | except AttributeError: |
| 69 | self.__paths = [Path(p) for p in self.split('\n') if os.path.exists(p)] |
| 70 | return self.__paths |
| 71 | |
| 72 | p = paths = property(get_paths) |
| 73 |
nothing calls this directly
no outgoing calls
no test coverage detected