Skip to content

Commit

Permalink
Run clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
H-Plus-Time committed Apr 12, 2024
1 parent df42d9c commit 093a1cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion js/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js/src/io/parquet/async.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ impl ParquetDataset {
let storage_container = Arc::new(HttpStore::new(base_url));
let location = object_store::path::Path::parse(parsed_url.path()).unwrap();
let file_meta = storage_container.head(&location).await.unwrap();
let reader = ParquetObjectReader::new(storage_container, file_meta);
reader

ParquetObjectReader::new(storage_container, file_meta)
})
.collect();
let dataset = _ParquetDataset::new(join_all(readers).await).await?;
Expand Down

0 comments on commit 093a1cb

Please sign in to comment.