diff --git a/src/main.rs b/src/main.rs index 7e8fe6a..b8495eb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -130,9 +130,7 @@ async fn get() -> Result> { json_string.remove(0); } match serde_json::from_str::>(&json_string) { - Ok(json_res) => { - Ok(json_res) - } + Ok(json_res) => Ok(json_res), Err(e) => { anyhow::bail!("BattleBit public json is incorrect: {:#?}", e) }