cargo fmt

This commit is contained in:
Carson McManus 2021-09-06 16:05:26 -04:00
parent e6d8de4dc2
commit 274dd373c2

View file

@ -476,7 +476,10 @@ fn main() {
let server_time = steamapi::get_server_time();
debug!("Time used to generate codes: {}", server_time);
for account in selected_accounts {
info!("Generating code for {}", account.lock().unwrap().account_name);
info!(
"Generating code for {}",
account.lock().unwrap().account_name
);
trace!("{:?}", account);
let code = account.lock().unwrap().generate_code(server_time);
println!("{}", code);