From 911e8e56d57c2e2105b01458efc0fa7831036d4a Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Wed, 20 Oct 2021 10:55:22 -0300 Subject: [PATCH] chore: run fmt --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 4805b042..aff2f07c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -83,7 +83,8 @@ fn connect( config: Option, ) -> Result { let id = rand::random(); - let (ws_stream, _) = tauri::async_runtime::block_on(connect_async_with_config(url, config.map(Into::into)))?; + let (ws_stream, _) = + tauri::async_runtime::block_on(connect_async_with_config(url, config.map(Into::into)))?; tauri::async_runtime::spawn(async move { let (write, read) = ws_stream.split();