Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-assists/src/handlers/expand_glob_import.rs')
-rw-r--r--crates/ide-assists/src/handlers/expand_glob_import.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/crates/ide-assists/src/handlers/expand_glob_import.rs b/crates/ide-assists/src/handlers/expand_glob_import.rs
index 0b95d6177f..fae5530f99 100644
--- a/crates/ide-assists/src/handlers/expand_glob_import.rs
+++ b/crates/ide-assists/src/handlers/expand_glob_import.rs
@@ -7,13 +7,14 @@ use ide_db::{
};
use stdx::never;
use syntax::{
- ast::{self, make, Use, UseTree, VisibilityKind},
- ted, AstNode, Direction, SyntaxNode, SyntaxToken, T,
+ AstNode, Direction, SyntaxNode, SyntaxToken, T,
+ ast::{self, Use, UseTree, VisibilityKind, make},
+ ted,
};
use crate::{
- assist_context::{AssistContext, Assists},
AssistId, AssistKind,
+ assist_context::{AssistContext, Assists},
};
// Assist: expand_glob_import