Apply cargo fmt

Mikayla Maki created

Change summary

crates/zed/src/languages/html.rs   | 2 +-
crates/zed/src/languages/json.rs   | 2 +-
crates/zed/src/languages/python.rs | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)

Detailed changes

crates/zed/src/languages/html.rs 🔗

@@ -1,8 +1,8 @@
-use node_runtime::NodeRuntime;
 use anyhow::{anyhow, Context, Result};
 use async_trait::async_trait;
 use futures::StreamExt;
 use language::{LanguageServerBinary, LanguageServerName, LspAdapter};
+use node_runtime::NodeRuntime;
 use serde_json::json;
 use smol::fs;
 use std::ffi::OsString;

crates/zed/src/languages/json.rs 🔗

@@ -1,10 +1,10 @@
-use node_runtime::NodeRuntime;
 use anyhow::{anyhow, Context, Result};
 use async_trait::async_trait;
 use collections::HashMap;
 use futures::{future::BoxFuture, FutureExt, StreamExt};
 use gpui::MutableAppContext;
 use language::{LanguageRegistry, LanguageServerBinary, LanguageServerName, LspAdapter};
+use node_runtime::NodeRuntime;
 use serde_json::json;
 use settings::{keymap_file_json_schema, settings_file_json_schema};
 use smol::fs;

crates/zed/src/languages/python.rs 🔗

@@ -1,8 +1,8 @@
-use node_runtime::NodeRuntime;
 use anyhow::{anyhow, Context, Result};
 use async_trait::async_trait;
 use futures::StreamExt;
 use language::{LanguageServerBinary, LanguageServerName, LspAdapter};
+use node_runtime::NodeRuntime;
 use smol::fs;
 use std::{
     any::Any,