Skip to content

Commit 8887cb7

Browse files
committed
fixup
1 parent 78b09aa commit 8887cb7

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/commands/backup.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ pub fn list(
6060
})
6161
.collect();
6262

63-
print_table(vec!["ID", "Type", "Scope", "Status", "Description", "Created"], rows);
63+
print_table(
64+
vec!["ID", "Type", "Scope", "Status", "Description", "Created"],
65+
rows,
66+
);
6467

6568
if let Some((current, last, total)) = extract_pagination(&response) {
6669
print_pagination(current, last, total);
@@ -90,10 +93,7 @@ pub fn show(
9093
print_key_value(vec![
9194
("ID", backup["id"].as_str().unwrap_or("-").to_string()),
9295
("Type", backup["type"].as_str().unwrap_or("-").to_string()),
93-
(
94-
"Scope",
95-
backup["scope"].as_str().unwrap_or("-").to_string(),
96-
),
96+
("Scope", backup["scope"].as_str().unwrap_or("-").to_string()),
9797
(
9898
"Status",
9999
backup["status"].as_str().unwrap_or("-").to_string(),

0 commit comments

Comments
 (0)