Skip to content

Commit

Permalink
refac imports
Browse files Browse the repository at this point in the history
  • Loading branch information
splurf committed Jun 20, 2024
1 parent 84a4c25 commit 971711a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/base/ascii.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ use image::{codecs::gif::GifDecoder, AnimationDecoder, DynamicImage, Frame};
use rayon::iter::{IntoParallelIterator, ParallelIterator};
use std::{fs::File, io::BufReader, path::Path, time::Duration};

use super::donut;
use crate::{Config, GifError, Result};
use super::{donut, Config, GifError, Result};

#[derive(Clone, Debug)]
pub struct AsciiFrame {
Expand Down
2 changes: 1 addition & 1 deletion src/base/donut.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::{f32::consts::TAU, time::Duration};

use crate::AsciiFrame;
use super::AsciiFrame;

/// The delay between each frame
/// - 20.833333ms => ~48 FPS
Expand Down

0 comments on commit 971711a

Please sign in to comment.