init cargo fmt; readme++

This commit is contained in:
rskntroot
2024-07-27 04:28:17 +00:00
parent da821c51aa
commit cb992274c7
2 changed files with 17 additions and 5 deletions

View File

@@ -138,11 +138,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Check the status of the change request every 60 seconds
loop {
let change_response = client
.get_change()
.id(&change_id)
.send()
.await?;
let change_response = client.get_change().id(&change_id).send().await?;
// check the status
if let Some(change_info) = change_response.change_info {