This commit is contained in:
davidontop 2024-05-01 18:18:55 +02:00
parent 03e229c38c
commit e0887a62f1
Signed by: DavidOnTop
GPG key ID: 5D05538A45D5149F
2 changed files with 6 additions and 3 deletions

View file

@ -93,7 +93,10 @@ impl<'rofi> rofi_mode::Mode<'rofi> for Mode<'rofi> {
its.iter().for_each(|item| {
value.insert(item.name.clone(), serde_json::to_value(&item.item).unwrap());
});
eprintln!("Example when using --edit-singleobj\n\n {}", serde_json::to_string(&val).unwrap());
eprintln!(
"Example when using --edit-singleobj\n\n {}",
serde_json::to_string(&val).unwrap()
);
return Err(());
}