Skip to content

Commit d41b78b

Browse files
Fmt
1 parent 0c3b539 commit d41b78b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/cli/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,9 @@ fn path_to_writer(path: &Path, schema: SchemaRef) -> Result<AnyWriter> {
717717
Ok(AnyWriter::Parquet(writer))
718718
}
719719
#[cfg(feature = "vortex")]
720-
"vortex" => Ok(AnyWriter::Vortex(VortexFileWriter::new(file, schema, path)?)),
720+
"vortex" => Ok(AnyWriter::Vortex(VortexFileWriter::new(
721+
file, schema, path,
722+
)?)),
721723
_ => {
722724
#[cfg(feature = "vortex")]
723725
return Err(eyre!(

0 commit comments

Comments
 (0)