cargo fmt.

This commit is contained in:
Bill Thiede 2022-07-28 21:39:14 -07:00
parent 78f7ca8956
commit 55af087d69
3 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@ use std::{
str::FromStr, str::FromStr,
sync::{ sync::{
mpsc::{sync_channel, Receiver, SyncSender}, mpsc::{sync_channel, Receiver, SyncSender},
{Arc, Mutex}, Arc, Mutex,
}, },
thread, thread,
}; };

View File

@ -1,6 +1,4 @@
use std::fs::File; use std::{fs::File, io::BufWriter, path::Path};
use std::io::BufWriter;
use std::path::Path;
use png; use png;
use thiserror::Error; use thiserror::Error;

View File

@ -1,5 +1,7 @@
use std::fmt; use std::{
use std::ops::{Index, IndexMut, Mul, Sub}; fmt,
ops::{Index, IndexMut, Mul, Sub},
};
use crate::{tuples::Tuple, Float, EPSILON}; use crate::{tuples::Tuple, Float, EPSILON};