Try to find the file by searching the paths.
(self)
| 546 | self.full_filename = "" |
| 547 | |
| 548 | def _find_file(self) -> None: |
| 549 | """Try to find the file by searching the paths.""" |
| 550 | self.full_filename = filefind(self.filename, self.path) |
| 551 | |
| 552 | |
| 553 | class JSONFileConfigLoader(FileConfigLoader): |
no test coverage detected