Skip to content

Commit b17c2b0

Browse files
committed
lint-fix
1 parent 73155f1 commit b17c2b0

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

crates/pg_workspace/src/settings.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use std::{
44
borrow::Cow,
55
num::NonZeroU64,
66
path::{Path, PathBuf},
7-
str::FromStr,
87
sync::{RwLock, RwLockReadGuard, RwLockWriteGuard},
98
};
109

@@ -13,7 +12,7 @@ use pg_configuration::{
1312
database::PartialDatabaseConfiguration,
1413
diagnostics::InvalidIgnorePattern,
1514
files::FilesConfiguration,
16-
migrations::{self, MigrationsConfiguration, PartialMigrationsConfiguration},
15+
migrations::{MigrationsConfiguration, PartialMigrationsConfiguration},
1716
ConfigurationDiagnostic, LinterConfiguration, PartialConfiguration,
1817
};
1918
use pg_fs::FileSystem;

crates/pg_workspace/src/workspace/server.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
use std::{
2-
fs,
3-
future::Future,
4-
panic::RefUnwindSafe,
5-
path::{Path, PathBuf},
6-
sync::RwLock,
7-
};
1+
use std::{fs, future::Future, panic::RefUnwindSafe, path::Path, sync::RwLock};
82

93
use analyser::AnalyserVisitorBuilder;
104
use change::StatementChange;

0 commit comments

Comments
 (0)