Skip to content

Commit

Permalink
Update handle_err.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Nov 13, 2024
1 parent 6e644da commit 5bc13dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/pylyzer_core/handle_err.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ fn filter_error(
.input
.path()
.canonicalize()
.is_ok_and(|path| !path.starts_with(root))
.is_ok_and(|path| path.starts_with(root.join(".venv")) || !path.starts_with(root))
})
{
return None;
Expand Down

0 comments on commit 5bc13dc

Please sign in to comment.