async def _add_plot_directory(self, str_path: str) -> bool:
add_plot_directory(str_path, self.root_path)
await self._refresh_plots()
return True
async def _get_plot_directories(self) -> List[str]:
return get_plot_directories(self.root_path)
async def _remove_plot_directory(self, str_path: str) -> bool:
remove_plot_directory(str_path, self.root_path)
return True