Return the file system path to prevent `resources.path()` from creating a temporary copy.
(self, resource)
| 24 | self.path = pathlib.Path(loader.path).parent |
| 25 | |
| 26 | def resource_path(self, resource): |
| 27 | """ |
| 28 | Return the file system path to prevent |
| 29 | `resources.path()` from creating a temporary |
| 30 | copy. |
| 31 | """ |
| 32 | return str(self.path.joinpath(resource)) |
| 33 | |
| 34 | def files(self): |
| 35 | return self.path |