Remove the common folder and move it to a common file

This commit is contained in:
Dave Halter
2020-05-08 13:23:56 +02:00
parent 138c22afe9
commit 25973554e2
8 changed files with 6 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ from jedi.inference.sys_path import discover_buildout_paths
from jedi.inference.cache import inference_state_as_method_param_cache
from jedi.inference.references import recurse_find_python_folders_and_files, search_in_file_ios
from jedi.file_io import FolderIO
from jedi.common.utils import traverse_parents
from jedi.common import traverse_parents
_CONFIG_FOLDER = '.jedi'
_CONTAINS_POTENTIAL_PROJECT = \

View File

@@ -5,7 +5,7 @@ from parso import split_lines
from jedi import debug
from jedi.api.exceptions import RefactoringError
from jedi.api.refactoring import Refactoring, EXPRESSION_PARTS
from jedi.common.utils import indent_block
from jedi.common import indent_block
from jedi.parser_utils import function_is_classmethod, function_is_staticmethod