(self)
| 105 | |
| 106 | @property |
| 107 | def path(self): |
| 108 | if len(self._formats) == 0: |
| 109 | format = "<FORMAT>" |
| 110 | elif len(self._formats) == 1: |
| 111 | format = self._formats[0] |
| 112 | else: |
| 113 | format = "{" + ",".join(self._formats) + "}" |
| 114 | return self.format_path(self._path, self._pid, format) |
| 115 | |
| 116 | @property |
| 117 | def directory(self): |
nothing calls this directly
no test coverage detected