From d80245352542f0a804826f4b3663cc0bc17d9f6a Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 2 May 2024 09:35:46 -0700 Subject: [PATCH] style: rearrange imports to satisfy cargo fmt check --- src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.rs b/src/types.rs index 7ac8a971..0a0b8948 100644 --- a/src/types.rs +++ b/src/types.rs @@ -1,6 +1,6 @@ //! Types that specify what is contained in a ZIP. -use path::{Component, Path, PathBuf}; use num_enum::{FromPrimitive, IntoPrimitive}; +use path::{Component, Path, PathBuf}; use std::path; use std::sync::{Arc, OnceLock};