Fix type clash

This commit is contained in:
Peter Law
2020-07-24 15:01:40 +01:00
parent 1418aada91
commit 9b3cd15c5f

View File

@@ -14,8 +14,8 @@ from jedi import debug
_BUILDOUT_PATH_INSERTION_LIMIT = 10
def _abs_path(module_context, path: str):
path = Path(path)
def _abs_path(module_context, str_path: str):
path = Path(str_path)
if path.is_absolute():
return path