Skip to content

Commit 2d18c81

Browse files
Remove unused PathBuf import from import.rs
The PathBuf type was added to the import but is not actually used in the file - only Path is used. Co-authored-by: adityapatwardhan <[email protected]>
1 parent 86b159d commit 2d18c81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/dsc-lib/src/extensions/import.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use path_absolutize::Absolutize;
2020
use rust_i18n::t;
2121
use schemars::JsonSchema;
2222
use serde::{Deserialize, Serialize};
23-
use std::path::{Path, PathBuf};
23+
use std::path::Path;
2424
use tracing::{debug, info};
2525

2626
#[derive(Debug, Default, Clone, PartialEq, Deserialize, Serialize, JsonSchema)]

0 commit comments

Comments
 (0)