Better training+hub

This commit is contained in:
Nicolas Patry
2023-08-14 11:09:48 +02:00
parent 7602323667
commit dd02f589c0
3 changed files with 52 additions and 5 deletions

View File

@ -22,7 +22,7 @@ fn sibling_to_parquet(
repo: &ApiRepo,
) -> Result<SerializedFileReader<File>, Error> {
let local = repo.get(rfilename)?;
let file = File::open(&local)?;
let file = File::open(local)?;
let reader = SerializedFileReader::new(file)?;
Ok(reader)
}