Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolLoong committed Sep 11, 2024
1 parent 7f407f4 commit ba611f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/completion_helper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::completion::{
CompleteContext, ParsedToken, Value, TYPE_ARR, TYPE_COL, TYPE_COM, TYPE_CR,
};
use log::trace;
use std::{collections::HashMap, sync::Arc};
use std::collections::HashMap;
use tower_lsp::lsp_types::{
Color, CompletionItem, CompletionItemKind, CompletionItemLabelDetails, CompletionParams,
InsertTextFormat, Position, Range, TextEdit,
Expand Down
3 changes: 1 addition & 2 deletions src/document.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use std::{collections::VecDeque, sync::Arc};
use std::sync::Arc;

use log::trace;
use tokio::sync::Mutex;
use tower_lsp::lsp_types::{DidChangeTextDocumentParams, Position};
use unicode_segmentation::UnicodeSegmentation;
Expand Down

0 comments on commit ba611f6

Please sign in to comment.