We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb8cf16 commit 894e721Copy full SHA for 894e721
crates/pyrefly_config/src/config.rs
@@ -1096,6 +1096,9 @@ impl ConfigFile {
1096
if let Some(import_root) = &self.import_root {
1097
self.import_root = Some(import_root.absolutize_from(config_root));
1098
}
1099
+ if let Some(typeshed_path) = &self.typeshed_path {
1100
+ self.typeshed_path = Some(typeshed_path.absolutize_from(config_root));
1101
+ }
1102
self.python_environment
1103
.site_package_path
1104
.iter_mut()
0 commit comments