This commit is contained in:
David Tomaschik
2026-02-25 20:31:28 -08:00
parent a46ee1f24c
commit 92fb8cb47d
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
def Settings( **kwargs ):
client_data = kwargs[ 'client_data' ]
return {
'interpreter_path': client_data[ 'g:ycm_python_interpreter_path' ] or '/usr/bin/python3',
'sys_path': client_data[ 'g:ycm_python_sys_path' ]
}