Re-order imports to satisfy neatness urges

(I have this exact urge too but missed this one)
This commit is contained in:
C J Silverio 2023-01-25 13:29:46 -08:00
parent 15536afe8d
commit 859e1bab57
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -5,12 +5,12 @@ use std::pin::Pin;
use std::sync::Mutex;
use std::task::{Context, Poll};
use crate::async_lib::{AsyncWrite, JoinHandle};
use futures::prelude::*;
use memmap2::MmapMut;
use ssri::{Algorithm, Integrity, IntegrityOpts};
use tempfile::NamedTempFile;
use crate::async_lib::{AsyncWrite, JoinHandle};
use crate::content::path;
use crate::errors::{Internal, Result};