6609: Minor, import style r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
bors[bot] 2020-11-23 18:20:01 +00:00 committed by GitHub
commit 036ea6317c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,9 @@
//! FIXME: write short doc here
use std::{
convert::TryInto,
error::Error,
fmt::{self, Display},
};
use hir::{Module, ModuleDef, ModuleSource, Semantics};
use ide_db::base_db::{FileRange, SourceDatabaseExt};
@ -6,12 +11,6 @@ use ide_db::{
defs::{Definition, NameClass, NameRefClass},
RootDatabase,
};
use std::{
convert::TryInto,
error::Error,
fmt::{self, Display},
};
use syntax::{
algo::find_node_at_offset,
ast::{self, NameOwner},