Skip to content

Commit a210b8a

Browse files
committed
fix: use uffs_polars re-exports for CsvWriter
1 parent e540eba commit a210b8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/uffs-mft/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2178,8 +2178,8 @@ async fn cmd_load(input: &Path, output: Option<&Path>, info_only: bool) -> Resul
21782178

21792179
match ext {
21802180
"csv" => {
2181-
use polars::prelude::CsvWriter;
2182-
use polars::prelude::SerWriter;
2181+
use uffs_polars::CsvWriter;
2182+
use uffs_polars::SerWriter;
21832183
use std::fs::File;
21842184

21852185
let file = File::create(output)?;

0 commit comments

Comments
 (0)