Skip to content

Commit 31c05d2

Browse files
authored
[BUGFIX] Download as parquet (huggingface#355)
remove enconding
1 parent f3d279a commit 31c05d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/usecases/generate-file.usecase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const useGenerateFile = () =>
3333
format,
3434
});
3535

36-
return await fs.readFile(file, 'utf-8');
36+
return await fs.readFile(file);
3737
} finally {
3838
if (file) await fs.unlink(file);
3939
}

0 commit comments

Comments
 (0)