(self)
| 121 | n = nlstr = property(get_nlstr) |
| 122 | |
| 123 | def get_paths(self): |
| 124 | try: |
| 125 | return self.__paths |
| 126 | except AttributeError: |
| 127 | self.__paths = [Path(p) for p in self if os.path.exists(p)] |
| 128 | return self.__paths |
| 129 | |
| 130 | p = paths = property(get_paths) |
| 131 |
nothing calls this directly
no outgoing calls
no test coverage detected