protected static Collection<String> collectPythonPath(Project project, PythonRunParams config) {
    final Module module = getModule(project, config);

    return Sets.newHashSet(
        collectPythonPath(module, config.shouldAddContentRoots(), config.shouldAddSourceRoots()));
  }