Ignore the mypy cache for searching folders

This commit is contained in:
Dave Halter
2020-12-25 17:35:28 +01:00
parent 4b5b2e791b
commit 8740ff2691

View File

@@ -10,7 +10,7 @@ from jedi.inference.imports import load_module_from_path
from jedi.inference.filters import ParserTreeFilter
from jedi.inference.gradual.conversion import convert_names
_IGNORE_FOLDERS = ('.tox', '.venv', 'venv', '__pycache__')
_IGNORE_FOLDERS = ('.tox', '.venv', '.mypy_cache', 'venv', '__pycache__')
_OPENED_FILE_LIMIT = 2000
"""