(self, output_type)
| 207 | return self.path_config |
| 208 | |
| 209 | def get_path(self, output_type): |
| 210 | return self.path_config.get(output_type, None) |
| 211 | |
| 212 | def set_path(self, output_type, path): |
| 213 | # Mainly used for setting output paths for individual plugins, which |
no test coverage detected