Skip to content

Commit 689c942

Browse files
fmt
1 parent 65b8b24 commit 689c942

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

pyrefly/lib/commands/infer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ use crate::commands::files::FilesArgs;
2424
use crate::commands::files::get_project_config_for_current_dir;
2525
use crate::commands::util::CommandExitStatus;
2626
use crate::config::error_kind::ErrorKind;
27-
use crate::state::ide::insert_import_edit_with_forced_import_format;
2827
use crate::state::ide::ImportEdit;
28+
use crate::state::ide::insert_import_edit_with_forced_import_format;
2929
use crate::state::lsp::AnnotationKind;
3030
use crate::state::lsp::ParameterAnnotation;
3131
use crate::state::require::Require;

pyrefly/lib/state/ide.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ use pyrefly_python::symbol_kind::SymbolKind;
1414
use pyrefly_util::gas::Gas;
1515
use ruff_python_ast::Expr;
1616
use ruff_python_ast::ModModule;
17-
use ruff_python_ast::helpers::is_docstring_stmt;
18-
use ruff_python_ast::name::Name;
1917
use ruff_python_ast::Stmt;
2018
use ruff_python_ast::StmtImportFrom;
19+
use ruff_python_ast::helpers::is_docstring_stmt;
20+
use ruff_python_ast::name::Name;
2121
use ruff_text_size::Ranged;
2222
use ruff_text_size::TextRange;
2323
use ruff_text_size::TextSize;

pyrefly/lib/state/lsp.rs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1887,8 +1887,7 @@ impl<'a> Transaction<'a> {
18871887
import_format,
18881888
);
18891889
let range = TextRange::at(import_edit.position, TextSize::new(0));
1890-
let title =
1891-
format!("Insert import: `{}`", import_edit.display_text);
1890+
let title = format!("Insert import: `{}`", import_edit.display_text);
18921891
code_actions.push((
18931892
title,
18941893
module_info.dupe(),
@@ -2422,10 +2421,8 @@ impl<'a> Transaction<'a> {
24222421
import_format,
24232422
);
24242423
let import_text_edit = TextEdit {
2425-
range: module_info.to_lsp_range(TextRange::at(
2426-
import_edit.position,
2427-
TextSize::new(0),
2428-
)),
2424+
range: module_info
2425+
.to_lsp_range(TextRange::at(import_edit.position, TextSize::new(0))),
24292426
new_text: import_edit.insert_text.clone(),
24302427
};
24312428
(insert_text, Some(vec![import_text_edit]), module_name)

0 commit comments

Comments
 (0)