Skip to content

Commit 269be4f

Browse files
author
Stefan Aichholzer
committed
A bit of colour and styles
1 parent b8322dd commit 269be4f

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/main.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -370,19 +370,15 @@ impl KeeManager {
370370
}
371371

372372
// Offer to add the account
373-
print!(
374-
" Would you like to add account '{hlt_account}' now? (y/N): "
375-
);
373+
print!(" Would you like to add account '{hlt_account}' now? (y/N): ");
376374
io::stdout().flush()?;
377375

378376
let mut input = String::new();
379377
io::stdin().read_line(&mut input)?;
380378

381379
if input.trim().to_lowercase() == "y" {
382380
if self.add_account(account_name)? {
383-
print!(
384-
" Would you like to use account '{hlt_account}' now? (y/N): "
385-
);
381+
print!(" Would you like to use account '{hlt_account}' now? (y/N): ");
386382
io::stdout().flush()?;
387383

388384
let mut input = String::new();

0 commit comments

Comments
 (0)