python: Use a single workspace folder for basedpyright (#35292)

Treat the new basedpyright adapter the same as pyright was treated in
#35243.

Release Notes:

- N/A
This commit is contained in:
Cole Miller 2025-07-29 15:00:41 -04:00 committed by GitHub
parent 72f8fa6d1e
commit 7878eacc73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1625,6 +1625,10 @@ impl LspAdapter for BasedPyrightLspAdapter {
fn manifest_name(&self) -> Option<ManifestName> {
Some(SharedString::new_static("pyproject.toml").into())
}
fn workspace_folders_content(&self) -> WorkspaceFoldersContent {
WorkspaceFoldersContent::WorktreeRoot
}
}
#[cfg(test)]