Skip to content

Commit e9643ab

Browse files
committed
Cleanup imports
1 parent 71f6d58 commit e9643ab

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

crates/ra_ide/src/completion/complete_attribute.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,17 @@
33
//! This module uses a bit of static metadata to provide completions
44
//! for built-in attributes.
55
6-
use super::completion_context::CompletionContext;
7-
use super::completion_item::{CompletionItem, CompletionItemKind, CompletionKind, Completions};
8-
use ast::AttrInput;
96
use ra_syntax::{
10-
ast::{self, AttrKind},
7+
ast::{self, AttrInput, AttrKind},
118
AstNode, SyntaxKind,
129
};
1310
use rustc_hash::FxHashSet;
1411

12+
use crate::completion::{
13+
completion_context::CompletionContext,
14+
completion_item::{CompletionItem, CompletionItemKind, CompletionKind, Completions},
15+
};
16+
1517
pub(super) fn complete_attribute(acc: &mut Completions, ctx: &CompletionContext) -> Option<()> {
1618
let attribute = ctx.attribute_under_caret.as_ref()?;
1719

0 commit comments

Comments
 (0)