1
0
Fork 0

svc: Set venv path for Pyright
dustin/hudctrl/pipeline/head There was a failure building this commit Details

Need to set the path to the Python venv for Pyright in order to get
valid diagnostics in Neovim.
Dustin 2022-08-01 22:19:53 -05:00
parent 3db3295493
commit 9334160e89
1 changed files with 4 additions and 0 deletions

View File

@ -61,3 +61,7 @@ warn_return_any = true
module = 'hudctrl.api'
disallow_untyped_defs = false
disallow_incomplete_defs = false
[tool.pyright]
venvPath = '.'
venv = '.venv'