Skip to content

Commit 89c94f2

Browse files
Split Path and PathBuf imports to separate lines in discover.rs
Changed from grouped import to individual imports to resolve build error at line 27:17. Co-authored-by: adityapatwardhan <[email protected]>
1 parent 2d18c81 commit 89c94f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ use crate::{
2424
use rust_i18n::t;
2525
use schemars::JsonSchema;
2626
use serde::{Deserialize, Serialize};
27-
use std::path::{Path, PathBuf};
27+
use std::path::Path;
28+
use std::path::PathBuf;
2829
use tracing::{info, trace};
2930

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

0 commit comments

Comments
 (0)