diff --git a/python/helpers/pycharm/_jb_runner_tools.py b/python/helpers/pycharm/_jb_runner_tools.py index 4a5d4cabcd7e..997cbe68e3d4 100644 --- a/python/helpers/pycharm/_jb_runner_tools.py +++ b/python/helpers/pycharm/_jb_runner_tools.py @@ -51,6 +51,9 @@ class _TreeManagerHolder(object): return self._manager_imp def _fill_manager(self): + path = os.path.dirname(os.path.realpath(__file__)) + if path not in sys.path: + sys.path.append(path) if self.parallel: from _jb_parallel_tree_manager import ParallelTreeManager self._manager_imp = ParallelTreeManager()