From d8718dcf545b04f3272880c8c724b1964eac8543 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 13 Apr 2023 18:45:18 -0400 Subject: [PATCH] Remove extraneous debug and TODO (#3967) --- crates/ruff_cli/src/commands/run.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/ruff_cli/src/commands/run.rs b/crates/ruff_cli/src/commands/run.rs index bd0ddcb3d2e3d..171a64d7c4efc 100644 --- a/crates/ruff_cli/src/commands/run.rs +++ b/crates/ruff_cli/src/commands/run.rs @@ -143,8 +143,7 @@ pub fn run( acc += item; acc }); - // TODO(chris): actually check the imports? - debug!("{:#?}", diagnostics.imports); + diagnostics.messages.sort_unstable(); let duration = start.elapsed(); debug!("Checked {:?} files in: {:?}", paths.len(), duration);