QuackatronHQ / Gigarepo

Usage of print! macro with newline RS-C1005
Anti-pattern
Minor
1 occurrence in this check
Using write!() with a format string that ends in a single newline
 33            for col in row {
 34                write!(f, " {} ", col)?;
 35            }
 36            write!(f, "\n")?; 37        }
 38        Ok(())
 39    }