1
Fork 0

Nicely format imports

This commit is contained in:
prescientmoon 2024-09-17 02:43:18 +02:00
parent 0e0043d2c1
commit 50f8db4e2e
Signed by: prescientmoon
SSH key fingerprint: SHA256:WFp/cO76nbarETAoQcQXuV+0h7XJsEsOCI0UsyPIy6U
19 changed files with 153 additions and 162 deletions
src/arcaea

View file

@ -1,3 +1,4 @@
// {{{ Imports
use std::fs;
use anyhow::Context;
@ -6,11 +7,10 @@ use num::Integer;
use serde::{Deserialize, Serialize};
use serde_with::serde_as;
use crate::{
arcaea::chart::{Difficulty, Jacket, SongCache},
assets::{get_asset_dir, should_skip_jacket_art},
context::Error,
};
use crate::arcaea::chart::{Difficulty, Jacket, SongCache};
use crate::assets::{get_asset_dir, should_skip_jacket_art};
use crate::context::Error;
// }}}
/// How many sub-segments to split each side into
pub const SPLIT_FACTOR: u32 = 8;