Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
westonpace committed Oct 5, 2023
1 parent be1956c commit 97b191c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/lance/src/index/vector/ivf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ use log::info;
use rand::{rngs::SmallRng, SeedableRng};
use serde::Serialize;
use snafu::{location, Location};
use tracing::{instrument, span, Level};
use tokio::io::AsyncWriteExt;
use tracing::{instrument, span, Level};

#[cfg(feature = "opq")]
use super::opq::train_opq;
Expand All @@ -50,8 +50,8 @@ use crate::{
dataset::Dataset,
datatypes::Field,
index::{pb, prefilter::PreFilter, vector::Transformer, Index},
io::RecordBatchStream,
io::object_writer::ObjectWriter,
io::RecordBatchStream,
};
use crate::{
io::{local::to_local_path, object_reader::ObjectReader},
Expand Down

0 comments on commit 97b191c

Please sign in to comment.