Let RequirementSource::Path.editable be bool, not Option<bool> (#3693)
Small refactoring of the internal representation. This does not change `tool.uv.sources`.
This commit is contained in:
@@ -89,7 +89,7 @@ impl Urls {
|
||||
parsed_url: ParsedUrl::Path(ParsedPathUrl {
|
||||
url: url.to_url(),
|
||||
path: path.clone(),
|
||||
editable: (*editable).unwrap_or_default(),
|
||||
editable: *editable,
|
||||
}),
|
||||
verbatim: url.clone(),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user